HEX
Server: LiteSpeed
System: Linux s12873.lon1.stableserver.net 5.14.0-611.11.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 3 09:47:37 EST 2025 x86_64
User: jairicem (1242)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/jairicem/kunakornthairestaurant.com/files/backups/db-backup-on-2023-12-13-00-46-52.txt
#
# 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=utf8mb3 COLLATE=utf8mb3_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=11 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (5, 3, 1112, NULL, '18.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (6, 3, 1010, NULL, '14.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (8, 4, 1112, NULL, '15.0000', 1, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (9, 5, 1112, NULL, '30.0000', 1, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (10, 6, 1142, NULL, '20.0000', 1, '', 'addition');


#
# TABLE STRUCTURE FOR: sma_adjustments
#

DROP TABLE IF EXISTS `sma_adjustments`;

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

INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (3, '2023-10-31 21:51:00', '2023/10/0003', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (4, '2023-11-12 18:12:00', '2023/11/0004', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (5, '2023-11-12 18:15:00', '2023/11/0005', 1, '', NULL, 2, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (6, '2023-11-24 20:44:00', '2023/11/0006', 1, '', NULL, 2, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_api_keys
#

DROP TABLE IF EXISTS `sma_api_keys`;

CREATE TABLE `sma_api_keys` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `reference` varchar(40) NOT NULL,
  `key` varchar(40) NOT NULL,
  `level` int(2) NOT NULL,
  `ignore_limits` tinyint(1) NOT NULL DEFAULT 0,
  `is_private_key` tinyint(1) NOT NULL DEFAULT 0,
  `ip_addresses` text DEFAULT NULL,
  `date_created` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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=utf8mb3 COLLATE=utf8mb3_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=utf8mb3 COLLATE=utf8mb3_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=utf8mb3 COLLATE=utf8mb3_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 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

#
# TABLE STRUCTURE FOR: sma_calendar
#

DROP TABLE IF EXISTS `sma_calendar`;

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

#
# 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=utf8mb3 COLLATE=utf8mb3_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=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_cart` (`id`, `time`, `user_id`, `data`) VALUES ('768caf7d5593f094ff7c981591b3c574', '1700941559', 8, '{\"cart_total\":20000,\"total_item_tax\":0,\"total_items\":1,\"total_unique_items\":1,\"062bf8b67b6fef0112c6e5848b8c05c6\":{\"id\":\"3ac684f5b27fff62687f536de3652e97\",\"product_id\":\"984\",\"qty\":1,\"name\":\"Jack Daniels\",\"slug\":\"jack-daniels\",\"code\":\"70\",\"price\":20000,\"tax\":\"0.00\",\"image\":\"84b9214b7a7ce17bc1fd313073900292.jpg\",\"option\":false,\"options\":null,\"rowid\":\"062bf8b67b6fef0112c6e5848b8c05c6\",\"row_tax\":\"0.0000\",\"subtotal\":\"20000.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=11 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1, 'ODM', 'One Dish Meal', NULL, 0, 'one-dish-meal', 'one dish meal');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (2, 'NOD', 'Noodles', NULL, 0, 'noodles', 'noodles');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (3, 'CUR', 'Curry/Soup', NULL, 0, 'currysoup', 'curry/soup');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (4, 'STR', 'Stir-Fried', NULL, 0, 'stir-fried', 'Stir-Fried');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (5, 'SPC', 'Spicy Salad', NULL, 0, 'spicy-salad', 'Spicy Salad');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (6, 'FRI', 'Fried', NULL, 0, 'fried', 'Fried');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (7, 'THA', 'Thai BBQ', NULL, 0, 'thai-bbq', 'Thai BBQ');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (8, 'DES', 'Dessert', NULL, 0, 'dessert', 'Dessert');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (9, 'DRI', 'Drinks', NULL, 0, 'drinks', 'Drinks');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (10, 'CT', 'Take away', NULL, 0, 'take-away', 'Take away pack');


#
# 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=utf8mb3 COLLATE=utf8mb3_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=57 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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', '', 'City Park Wuse 2 Abuja', 'Wuse 2', 'FCT', '900281', 'Nigeria', '0123456789', 'walkin@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (2, 4, 'supplier', NULL, NULL, 'Test Supplier', 'Supplier Company Name', NULL, 'Supplier Address', 'Petaling Jaya', 'Selangor', '46050', 'Malaysia', '0123456789', 'supplier@tecdiary.com', '-', '-', '-', '-', '-', '-', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (3, NULL, 'biller', NULL, NULL, 'kunakornthairestaurant', 'kunakornthairestaurant', '', 'City Park, Wuse 2, Ahmadu Bello Way, Abuja', 'Wuse 2', 'FCT', '900285', 'Nigeria', '09136541017', 'kunakornthairestaurant@gmail.com', '', '', '', '', '', '', ' Thank you for your patronage. Please come again.', 0, 'logo1.png', 0, NULL, NULL, NULL, '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (4, 3, 'customer', 1, 'General', 'Table 1', 'Table 1', '', 'City Park Wuse 2 Abuja', 'Wuse 2', 'FCT', '', '', '08000000', 'table1@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (5, 3, 'customer', 1, 'General', 'Table 2', 'Table 2', '', 'City Park Wuse 2 Abuja', 'Wuse 2', 'FCT', '', '', '08000000000', 'table2@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (7, 3, 'customer', 1, 'General', 'Table 4', 'Table 4', '', 'City Park Wuse 2 Abuja', 'wuse', 'Abuja', '900285', 'Nigeria', '08000000000', 'table4@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (18, 3, 'customer', 1, 'General', 'Table 15', 'Table 15', '', 'City Park Wuse 2 Abuja', 'wuse', 'Abuja', '900296', 'Nigeria', '08000000000', 'table15@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (22, 3, 'customer', 1, 'General', 'Table 19', 'Table 19', '', 'City Park Wuse 2 Abuja', 'wuse', 'Abuja', '900300', 'Nigeria', '08000000000', 'table19@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (24, 3, 'customer', 1, 'General', 'Table 3', 'Table 3', '', 'City Park Wuse 2 Abuja', 'Wuse 3', 'FCT', '', '', '08000001', 'table3@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (25, 3, 'customer', 1, 'General', 'Table 5', 'Table 5', '', 'City Park Wuse 2 Abuja', 'wuse', 'Abuja', '900273.5', 'Nigeria', '08000000000', 'table5@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (26, 3, 'customer', 1, 'General', 'Table 6', 'Table 6', '', 'City Park Wuse 2 Abuja', 'Wuse 3', 'FCT', '900267', '', '08000000000', 'table6@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (27, 3, 'customer', 1, 'General', 'Table 7', 'Table 7', '', 'City Park Wuse 2 Abuja', 'wuse', 'Abuja', '900260.5', 'Nigeria', '08000000000', 'table7@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (28, 3, 'customer', 1, 'General', 'Table 8', 'Table 8', '', 'City Park Wuse 2 Abuja', 'Wuse 4', 'FCT', '900254', 'Nigeria', '0107456787', 'table8@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (29, 3, 'customer', 1, 'General', 'Table 9', 'Table 9', '', 'City Park Wuse 2 Abuja', 'Wuse 5', 'FCT', '', '', '0222913575', 'table9@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (30, 3, 'customer', 1, 'General', 'Table 10', 'Table 10', '', 'City Park Wuse 2 Abuja', 'wuse', 'Abuja', '900247.5', 'Nigeria', '08000000000', 'table10@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (31, 3, 'customer', 1, 'General', 'Table 11', 'Table 11', '', 'City Park Wuse 2 Abuja', 'Wuse 4', 'FCT', '900241', '', '08000000000', 'table11@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (32, 3, 'customer', 1, 'General', 'Table 12', 'Table 12', '', 'City Park Wuse 2 Abuja', 'wuse', 'Abuja', '900234.5', 'Nigeria', '08000000000', 'table12@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (33, 3, 'customer', 1, 'General', 'Table 13', 'Table 13', '', 'City Park Wuse 2 Abuja', 'Wuse 6', 'FCT', '900228', 'Nigeria', '0338370363', 'table13@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (34, 3, 'customer', 1, 'General', 'Table 14', 'Table 14', '', 'City Park Wuse 2 Abuja', 'Wuse 7', 'FCT', '', '', '0453827151', 'table14@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (35, 3, 'customer', 1, 'General', 'Table 16', 'Table 16', '', 'City Park Wuse 2 Abuja', 'wuse', 'Abuja', '900221.5', 'Nigeria', '08000000000', 'table16@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (36, 3, 'customer', 1, 'General', 'Table 17', 'Table 17', '', 'City Park Wuse 2 Abuja', 'Wuse 5', 'FCT', '900215', '', '08000000000', 'table17@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (37, 3, 'customer', 1, 'General', 'Table 18', 'Table 18', '', 'City Park Wuse 2 Abuja', 'wuse', 'Abuja', '900208.5', 'Nigeria', '08000000000', 'table18@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (38, 3, 'customer', 1, 'General', 'VIP 1', 'VIP 1', '', 'City Park Wuse 2 Abuja', 'Wuse 6', 'FCT', '900202', '', '08000000000', 'vip1@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (39, 3, 'customer', 1, 'General', 'VIP 2', 'VIP 2', '', 'City Park Wuse 2 Abuja', 'wuse', 'Abuja', '900195.5', 'Nigeria', '08000000000', 'vip2@kunakorn.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (40, 3, 'customer', 1, 'General', 'dXvECPDwBDlcVO dXvECPDwBDlcVO', 'DFJmTLMXXaFdlBe', NULL, NULL, NULL, NULL, NULL, NULL, '612-976-76-11', 'scorpius77@verizon.net', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (41, 3, 'customer', 1, 'General', 'xTxDmjPSkmLiBD xTxDmjPSkmLiBD', 'WiWDcLQvNVrwzfoDB', NULL, NULL, NULL, NULL, NULL, NULL, '754-306-16-18', 'aurelie@draecollection.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (42, 3, 'customer', 1, 'General', 'AdJcCsshpLWX AdJcCsshpLWX', 'QWrHtVwefvhdrxkUnTseNBwRqoIR', NULL, NULL, NULL, NULL, NULL, NULL, '182-345-18-10', 'anouk@draecollection.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (43, 3, 'customer', 1, 'General', 'OEjxFMRcOMNiH OEjxFMRcOMNiH', 'vWqHdJkLCbIpdDQczLCPomA', NULL, NULL, NULL, NULL, NULL, NULL, '734-003-96-66', 'rosefunerals@outlook.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (44, 3, 'customer', 1, 'General', 'RCjfCtFxUBiSh RCjfCtFxUBiSh', 'hdeBLJEDUjQpdNyEJPoeSkwoSF', NULL, NULL, NULL, NULL, NULL, NULL, '789-947-73-51', 'kumpDo.tbtdbqq@silesia.life', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (45, 3, 'customer', 1, 'General', 'dAeJoSBsSJcOT dAeJoSBsSJcOT', 'PjcnejjdnjJKVJHuotMJU', NULL, NULL, NULL, NULL, NULL, NULL, '105-042-60-20', 'elbradree@gmail.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (46, 3, 'customer', 1, 'General', 'WnabEHIRvkUF WnabEHIRvkUF', 'oTBUuwucVbULSyxrCTMinTPkWxxhv', NULL, NULL, NULL, NULL, NULL, NULL, '245-339-89-56', 'areal.joplin@gmail.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (47, 3, 'customer', 1, 'General', 'clBqwfcxdKa clBqwfcxdKa', 'djsrwytyqRKxoPc', NULL, NULL, NULL, NULL, NULL, NULL, '425-812-54-99', 'it@schiffs.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (48, 3, 'customer', 1, 'General', 'bjtJVwXsOoexkXLY bjtJVwXsOoexkXLY', 'dHBuiRPdAjLncDT', NULL, NULL, NULL, NULL, NULL, NULL, '781-239-55-94', 'spiausainc@gmail.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (49, 3, 'customer', 1, 'General', 'WDKbiABtkpjr WDKbiABtkpjr', 'vtvVWmbOTByKyrciiuSkn', NULL, NULL, NULL, NULL, NULL, NULL, '147-604-55-94', 'zach.fabry@bulkfluidsystems.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (50, 3, 'customer', 1, 'General', 'XKqYXTpAU XKqYXTpAU', 'fTdCcCAzNHckyoX', NULL, NULL, NULL, NULL, NULL, NULL, '245-162-05-81', 'wilsons@nyptrust.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (51, 3, 'customer', 1, 'General', 'QLAPtxBxpqj QLAPtxBxpqj', 'uarNSDdYBXNiQIk', NULL, NULL, NULL, NULL, NULL, NULL, '305-759-00-68', 'kfink@finklawfirm.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (52, 3, 'customer', 1, 'General', 'DYFDjKnjrj DYFDjKnjrj', 'MxDsIyDAVclXDSoedjqyq', NULL, NULL, NULL, NULL, NULL, NULL, '490-828-04-22', 'smartins.blackstone@gmail.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (53, 3, 'customer', 1, 'General', 'vxFIvCujrxKzN vxFIvCujrxKzN', 'byxQXjsFoTCJbjEJAtHnwikHrXjk', NULL, NULL, NULL, NULL, NULL, NULL, '549-717-12-63', 'sylviasnyder01@gmail.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (54, 3, 'customer', 1, 'General', 'chMYSzsWLHcCdb chMYSzsWLHcCdb', 'baofWoJTNtMUHUhYT', NULL, NULL, NULL, NULL, NULL, NULL, '588-454-42-46', 'chinedum@dixtrit.media', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (55, 3, 'customer', 1, 'General', 'rsjNXOmpemOcd rsjNXOmpemOcd', 'EOhWdpxBnfNIDrVQEzJNePmhR', NULL, NULL, NULL, NULL, NULL, NULL, '559-845-14-37', 'mmcculley@tapestry.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (56, 3, 'customer', 1, 'General', 'DRphxLzJoQueO DRphxLzJoQueO', 'PChbAUJIrpJrdqVrPH', NULL, NULL, NULL, NULL, NULL, NULL, '781-932-54-09', 'pdilley@stonestreetquarries.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 'logo.png', 0, NULL, 1, 'Default', NULL);


#
# TABLE STRUCTURE FOR: sma_costing
#

DROP TABLE IF EXISTS `sma_costing`;

CREATE TABLE `sma_costing` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date NOT NULL,
  `product_id` int(11) DEFAULT NULL,
  `sale_item_id` int(11) NOT NULL,
  `sale_id` int(11) DEFAULT NULL,
  `purchase_item_id` int(11) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `purchase_net_unit_cost` decimal(25,4) DEFAULT NULL,
  `purchase_unit_cost` decimal(25,4) DEFAULT NULL,
  `sale_net_unit_price` decimal(25,4) NOT NULL,
  `sale_unit_price` decimal(25,4) NOT NULL,
  `quantity_balance` decimal(15,4) DEFAULT NULL,
  `inventory` tinyint(1) DEFAULT 0,
  `overselling` tinyint(1) DEFAULT 0,
  `option_id` int(11) DEFAULT NULL,
  `purchase_id` int(11) DEFAULT NULL,
  `transfer_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3603 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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 (1, '2023-10-15', 40, 1, 1, NULL, '5.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2, '2023-10-15', 4, 2, 2, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3, '2023-10-15', 10, 3, 2, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (4, '2023-10-15', 56, 4, 3, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (5, '2023-10-17', 1, 5, 4, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (6, '2023-10-17', 1, 6, 4, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (7, '2023-10-18', 1, 7, 5, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (8, '2023-10-18', 4, 8, 6, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (9, '2023-10-18', 60, 9, 6, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (10, '2023-10-18', 42, 10, 6, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (11, '2023-10-18', 13, 11, 7, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (12, '2023-10-18', 8, 12, 7, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (13, '2023-10-18', 42, 13, 7, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (14, '2023-10-18', 69, 14, 7, NULL, '2.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (15, '2023-10-18', 4, 15, 7, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (16, '2023-10-18', 13, 16, 7, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (17, '2023-10-18', 72, 17, 7, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (18, '2023-10-18', 71, 18, 7, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (19, '2023-10-18', 52, 19, 7, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (20, '2023-10-18', 60, 20, 8, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (21, '2023-10-18', 4, 21, 8, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (22, '2023-10-18', 52, 22, 8, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (23, '2023-10-18', 33, 23, 9, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (24, '2023-10-18', 39, 24, 9, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (25, '2023-10-18', 28, 25, 9, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (26, '2023-10-18', 47, 26, 10, NULL, '1.0000', '10900.0000', '10900.0000', '10900.0000', '10900.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 (27, '2023-10-18', 43, 27, 10, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (28, '2023-10-18', 72, 28, 11, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (29, '2023-10-18', 71, 29, 11, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (30, '2023-10-19', 72, 30, 12, NULL, '1.0000', '2000.0000', '2000.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 (31, '2023-10-19', 42, 31, 13, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (32, '2023-10-19', 59, 32, 13, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (33, '2023-10-19', 7, 33, 13, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (34, '2023-10-19', 1, 34, 13, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (35, '2023-10-19', 4, 35, 13, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (36, '2023-10-19', 56, 36, 13, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (37, '2023-10-19', 77, 37, 13, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (38, '2023-10-19', 17, 38, 13, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (39, '2023-10-19', 76, 39, 13, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (40, '2023-10-19', 1, 40, 14, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (41, '2023-10-19', 71, 41, 14, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (42, '2023-10-19', 142, 42, 14, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (43, '2023-10-19', 51, 43, 15, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (44, '2023-10-19', 64, 44, 16, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (45, '2023-10-19', 1, 45, 17, NULL, '3.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (46, '2023-10-19', 13, 46, 17, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (47, '2023-10-19', 76, 47, 17, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (48, '2023-10-19', 58, 48, 18, NULL, '3.0000', '6900.0000', '6900.0000', '10000.0000', '10000.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 (49, '2023-10-19', 42, 49, 18, NULL, '3.0000', '8900.0000', '8900.0000', '20000.0000', '20000.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 (50, '2023-10-19', 7, 50, 18, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (51, '2023-10-19', 76, 51, 18, NULL, '9.0000', '500.0000', '500.0000', '500.0000', '500.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 (52, '2023-10-19', 58, 52, 19, NULL, '5.0000', '6900.0000', '6900.0000', '10000.0000', '10000.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 (53, '2023-10-19', 9, 53, 19, NULL, '20.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (54, '2023-10-19', 64, 54, 19, NULL, '5.0000', '6900.0000', '6900.0000', '25000.0000', '25000.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 (55, '2023-10-19', 60, 55, 19, NULL, '4.0000', '6900.0000', '6900.0000', '26700.0000', '26700.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 (56, '2023-10-19', 42, 56, 19, NULL, '5.0000', '8900.0000', '8900.0000', '20000.0000', '20000.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 (57, '2023-10-19', 77, 57, 19, NULL, '4.0000', '9900.0000', '9900.0000', '36000.0000', '36000.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 (58, '2023-10-19', 48, 58, 19, NULL, '5.0000', '8900.0000', '8900.0000', '18000.0000', '18000.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 (59, '2023-10-19', 154, 59, 19, NULL, '10.0000', '700.0000', '700.0000', '700.0000', '700.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 (60, '2023-10-19', 129, 60, 20, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (61, '2023-10-19', 142, 61, 20, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (62, '2023-10-19', 8, 62, 21, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (63, '2023-10-19', 12, 63, 21, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (64, '2023-10-19', 12, 64, 22, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (65, '2023-10-19', 19, 65, 22, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (66, '2023-10-19', 72, 66, 22, NULL, '4.0000', '2000.0000', '2000.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 (67, '2023-10-19', 71, 67, 23, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (68, '2023-10-19', 142, 68, 23, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (69, '2023-10-19', 12, 69, 23, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (70, '2023-10-19', 164, 70, 24, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (71, '2023-10-19', 136, 71, 24, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (72, '2023-10-19', 142, 72, 24, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (73, '2023-10-19', 3, 73, 24, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (74, '2023-10-19', 1, 74, 25, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (75, '2023-10-19', 16, 75, 25, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (76, '2023-10-19', 59, 76, 25, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (77, '2023-10-19', 76, 77, 25, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (78, '2023-10-19', 62, 78, 25, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (79, '2023-10-19', 142, 79, 25, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (80, '2023-10-19', 132, 80, 25, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (81, '2023-10-19', 147, 81, 25, NULL, '1.0000', '2000.0000', '2000.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 (82, '2023-10-19', 136, 82, 26, NULL, '3.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (83, '2023-10-19', 5, 83, 26, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (84, '2023-10-19', 3, 84, 26, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (85, '2023-10-19', 8, 85, 26, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (86, '2023-10-19', 12, 86, 26, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (87, '2023-10-19', 142, 87, 27, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (88, '2023-10-19', 129, 88, 28, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (89, '2023-10-19', 4, 89, 28, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (90, '2023-10-19', 129, 90, 29, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (91, '2023-10-19', 69, 91, 30, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (92, '2023-10-19', 5, 92, 30, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (93, '2023-10-19', 16, 93, 30, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (94, '2023-10-19', 129, 94, 31, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (95, '2023-10-19', 58, 95, 32, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (96, '2023-10-19', 10, 96, 32, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (97, '2023-10-19', 47, 97, 32, NULL, '1.0000', '10900.0000', '10900.0000', '10900.0000', '10900.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 (98, '2023-10-19', 29, 98, 32, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (99, '2023-10-19', 10, 99, 32, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (100, '2023-10-19', 59, 100, 32, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (101, '2023-10-19', 56, 101, 32, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (102, '2023-10-19', 3, 102, 32, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (103, '2023-10-19', 52, 103, 32, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (104, '2023-10-19', 5, 104, 32, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (105, '2023-10-19', 77, 105, 32, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (106, '2023-10-19', 71, 106, 32, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (107, '2023-10-19', 72, 107, 32, NULL, '1.0000', '2000.0000', '2000.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 (108, '2023-10-19', 76, 108, 32, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (109, '2023-10-19', 76, 109, 33, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (110, '2023-10-19', 8, 110, 34, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (111, '2023-10-19', 12, 111, 34, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (112, '2023-10-19', 135, 112, 34, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (113, '2023-10-19', 11, 113, 34, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (114, '2023-10-19', 69, 114, 35, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (115, '2023-10-19', 53, 115, 35, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (116, '2023-10-19', 42, 116, 35, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (117, '2023-10-19', 48, 117, 35, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (118, '2023-10-19', 22, 118, 35, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (119, '2023-10-19', 28, 119, 35, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (120, '2023-10-19', 7, 120, 35, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (121, '2023-10-19', 56, 121, 35, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (122, '2023-10-19', 17, 122, 35, NULL, '4.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (123, '2023-10-19', 72, 123, 35, NULL, '5.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (124, '2023-10-19', 3, 124, 35, NULL, '3.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (125, '2023-10-19', 42, 125, 35, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (126, '2023-10-19', 44, 126, 35, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (127, '2023-10-19', 13, 127, 35, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (128, '2023-10-19', 33, 128, 35, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (129, '2023-10-19', 151, 129, 35, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (130, '2023-10-19', 71, 130, 35, NULL, '10.0000', '500.0000', '500.0000', '500.0000', '500.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 (131, '2023-10-19', 142, 131, 35, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (132, '2023-10-19', 12, 132, 35, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (133, '2023-10-19', 72, 133, 36, NULL, '1.0000', '2000.0000', '2000.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 (134, '2023-10-19', 12, 134, 36, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (135, '2023-10-19', 5, 135, 36, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (136, '2023-10-19', 76, 136, 36, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (137, '2023-10-19', 164, 137, 37, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (138, '2023-10-19', 136, 138, 37, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (139, '2023-10-19', 4, 139, 38, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (140, '2023-10-19', 71, 140, 39, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (141, '2023-10-19', 89, 141, 39, NULL, '1.0000', '9000.0000', '9000.0000', '9000.0000', '9000.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 (142, '2023-10-19', 165, 142, 39, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (143, '2023-10-19', 149, 143, 39, NULL, '1.0000', '2000.0000', '2000.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 (144, '2023-10-19', 59, 144, 39, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (145, '2023-10-19', 12, 145, 40, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (146, '2023-10-19', 3, 146, 41, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (147, '2023-10-19', 12, 147, 42, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (148, '2023-10-19', 8, 148, 42, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (149, '2023-10-19', 10, 149, 43, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (150, '2023-10-19', 135, 150, 43, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (152, '2023-10-19', 17, 153, 46, NULL, '3.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (153, '2023-10-19', 13, 154, 46, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (154, '2023-10-19', 12, 155, 46, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (155, '2023-10-19', 72, 156, 46, NULL, '4.0000', '2000.0000', '2000.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 (156, '2023-10-19', 12, 157, 47, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (157, '2023-10-19', 149, 158, 47, NULL, '1.0000', '2000.0000', '2000.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 (158, '2023-10-19', 4, 159, 47, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (159, '2023-10-19', 59, 160, 47, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (160, '2023-10-20', 71, 161, 48, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (161, '2023-10-20', 48, 162, 49, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (162, '2023-10-20', 77, 163, 49, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (163, '2023-10-20', 58, 164, 49, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (164, '2023-10-20', 65, 165, 49, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (165, '2023-10-20', 53, 166, 49, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (166, '2023-10-20', 53, 167, 49, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (167, '2023-10-20', 55, 168, 49, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (168, '2023-10-20', 42, 169, 49, 52, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (169, '2023-10-20', 42, 169, 49, 52, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (170, '2023-10-20', 42, 169, 49, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (171, '2023-10-20', 44, 170, 49, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (172, '2023-10-20', 7, 171, 49, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (173, '2023-10-20', 17, 172, 49, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (174, '2023-10-20', 13, 173, 49, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (175, '2023-10-20', 71, 174, 49, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (176, '2023-10-20', 71, 175, 50, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (177, '2023-10-20', 48, 176, 51, NULL, '2.0000', '8900.0000', '8900.0000', '9900.0000', '9900.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 (178, '2023-10-20', 7, 177, 51, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (179, '2023-10-20', 166, 178, 51, NULL, '1.0000', '16200.0000', '16200.0000', '16200.0000', '16200.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 (180, '2023-10-20', 71, 179, 51, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (181, '2023-10-20', 147, 180, 51, NULL, '1.0000', '2000.0000', '2000.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 (182, '2023-10-20', 10, 181, 52, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (183, '2023-10-20', 58, 182, 53, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (184, '2023-10-20', 48, 183, 54, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (185, '2023-10-20', 77, 184, 54, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (186, '2023-10-20', 58, 185, 54, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (187, '2023-10-20', 65, 186, 54, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (188, '2023-10-20', 53, 187, 54, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (189, '2023-10-20', 53, 188, 54, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (190, '2023-10-20', 55, 189, 54, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (191, '2023-10-20', 42, 190, 54, 52, '-2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (192, '2023-10-20', 42, 190, 54, 52, '-2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (193, '2023-10-20', 42, 190, 54, NULL, '3.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (194, '2023-10-20', 44, 191, 54, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (195, '2023-10-20', 7, 192, 54, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (196, '2023-10-20', 17, 193, 54, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (197, '2023-10-20', 13, 194, 54, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (198, '2023-10-20', 71, 195, 54, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (199, '2023-10-20', 59, 196, 55, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (200, '2023-10-20', 48, 197, 56, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (201, '2023-10-20', 154, 198, 56, NULL, '1.0000', '700.0000', '700.0000', '700.0000', '700.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 (202, '2023-10-20', 76, 199, 56, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (203, '2023-10-20', 72, 200, 57, NULL, '1.0000', '2000.0000', '2000.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 (204, '2023-10-20', 1, 201, 58, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (205, '2023-10-20', 3, 202, 58, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (206, '2023-10-20', 60, 203, 58, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (207, '2023-10-20', 13, 204, 58, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (208, '2023-10-20', 71, 205, 58, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (209, '2023-10-20', 4, 206, 59, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (210, '2023-10-20', 167, 207, 59, NULL, '2.0000', '6000.0000', '6000.0000', '6000.0000', '6000.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 (211, '2023-10-20', 71, 208, 59, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (212, '2023-10-20', 168, 209, 59, NULL, '3.0000', '8000.0000', '8000.0000', '8000.0000', '8000.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 (213, '2023-10-21', 169, 210, 60, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (214, '2023-10-21', 170, 211, 60, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (215, '2023-10-21', 71, 212, 60, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (216, '2023-10-21', 58, 213, 61, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (217, '2023-10-21', 51, 214, 61, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (218, '2023-10-21', 76, 215, 61, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (219, '2023-10-21', 58, 216, 62, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (220, '2023-10-21', 26, 217, 62, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (221, '2023-10-21', 171, 218, 62, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (222, '2023-10-21', 59, 219, 62, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (223, '2023-10-21', 68, 220, 62, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (224, '2023-10-21', 7, 221, 62, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (225, '2023-10-21', 9, 222, 62, NULL, '1.0000', '2000.0000', '2000.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 (226, '2023-10-21', 29, 223, 62, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (227, '2023-10-21', 71, 224, 62, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (228, '2023-10-21', 71, 225, 63, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (229, '2023-10-21', 56, 226, 64, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (230, '2023-10-21', 71, 227, 64, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (231, '2023-10-21', 48, 228, 64, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (232, '2023-10-21', 28, 229, 65, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (233, '2023-10-21', 59, 230, 65, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (234, '2023-10-21', 58, 231, 65, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (235, '2023-10-21', 66, 232, 65, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (236, '2023-10-21', 62, 233, 65, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (237, '2023-10-21', 48, 234, 65, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (238, '2023-10-21', 15, 235, 65, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (239, '2023-10-21', 7, 236, 65, NULL, '4.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (240, '2023-10-21', 72, 237, 65, NULL, '1.0000', '2000.0000', '2000.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 (241, '2023-10-21', 71, 238, 65, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (242, '2023-10-21', 178, 239, 65, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (243, '2023-10-21', 11, 240, 66, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (244, '2023-10-21', 77, 241, 66, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (245, '2023-10-22', 55, 242, 67, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (246, '2023-10-22', 62, 243, 67, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (247, '2023-10-22', 63, 244, 67, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (248, '2023-10-22', 141, 245, 67, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (249, '2023-10-22', 7, 246, 67, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (250, '2023-10-22', 9, 247, 67, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (251, '2023-10-22', 57, 248, 67, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (252, '2023-10-22', 58, 249, 67, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (253, '2023-10-22', 59, 250, 67, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (254, '2023-10-22', 32, 251, 67, NULL, '1.0000', '8900.0000', '8900.0000', '9900.0000', '9900.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 (255, '2023-10-22', 35, 252, 67, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (256, '2023-10-22', 39, 253, 67, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (257, '2023-10-22', 42, 254, 67, 52, '-3.0000', '8900.0000', '8900.0000', '8900.0000', '8900.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (258, '2023-10-22', 42, 254, 67, 52, '-3.0000', '8900.0000', '8900.0000', '8900.0000', '8900.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (259, '2023-10-22', 42, 254, 67, NULL, '4.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (260, '2023-10-22', 46, 255, 67, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (261, '2023-10-22', 40, 256, 67, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (262, '2023-10-22', 37, 257, 67, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (263, '2023-10-22', 76, 258, 67, NULL, '24.0000', '500.0000', '500.0000', '500.0000', '500.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 (264, '2023-10-22', 15, 259, 67, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (265, '2023-10-22', 19, 260, 67, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (266, '2023-10-22', 31, 261, 67, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (267, '2023-10-22', 113, 262, 68, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (268, '2023-10-22', 141, 263, 69, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (269, '2023-10-22', 57, 264, 69, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (270, '2023-10-22', 76, 265, 69, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (271, '2023-10-22', 40, 266, 70, NULL, '3.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (272, '2023-10-22', 37, 267, 70, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (273, '2023-10-22', 48, 268, 71, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (274, '2023-10-22', 58, 269, 71, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (275, '2023-10-22', 71, 270, 71, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (276, '2023-10-22', 292, 271, 72, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (277, '2023-10-22', 402, 272, 73, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (278, '2023-10-22', 476, 273, 73, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (279, '2023-10-22', 603, 274, 73, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (280, '2023-10-22', 729, 280, 74, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (281, '2023-10-22', 624, 281, 74, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (282, '2023-10-22', 707, 282, 75, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (283, '2023-10-22', 740, 283, 76, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (284, '2023-10-22', 622, 284, 76, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (285, '2023-10-22', 847, 285, 76, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (286, '2023-10-22', 684, 286, 76, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (287, '2023-10-22', 754, 287, 77, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (288, '2023-10-22', 624, 288, 77, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (289, '2023-10-22', 760, 289, 77, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (290, '2023-10-22', 631, 290, 77, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (291, '2023-10-22', 720, 291, 77, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (292, '2023-10-22', 823, 292, 77, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (293, '2023-10-22', 625, 293, 78, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (294, '2023-10-22', 722, 294, 78, NULL, '2.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (295, '2023-10-22', 786, 295, 78, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (296, '2023-10-22', 845, 296, 78, NULL, '6.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (297, '2023-10-22', 846, 297, 78, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (298, '2023-10-22', 788, 298, 78, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (299, '2023-10-22', 823, 299, 78, NULL, '7.0000', '500.0000', '500.0000', '500.0000', '500.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 (300, '2023-10-22', 625, 300, 78, NULL, '8.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (301, '2023-10-22', 730, 301, 78, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (302, '2023-10-22', 625, 305, 79, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (303, '2023-10-22', 823, 306, 79, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (304, '2023-10-22', 625, 307, 79, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (305, '2023-10-22', 712, 308, 80, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (306, '2023-10-22', 713, 309, 80, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (307, '2023-10-22', 737, 310, 80, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (308, '2023-10-22', 723, 311, 80, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (309, '2023-10-23', 848, 312, 81, NULL, '2.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (310, '2023-10-23', 625, 313, 82, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (311, '2023-10-23', 826, 314, 82, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (312, '2023-10-23', 789, 315, 83, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (313, '2023-10-23', 692, 316, 84, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (314, '2023-10-23', 712, 317, 84, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (315, '2023-10-23', 826, 318, 84, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (316, '2023-10-23', 683, 319, 85, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (317, '2023-10-23', 715, 320, 85, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (318, '2023-10-23', 650, 321, 85, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (319, '2023-10-23', 698, 322, 85, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (320, '2023-10-23', 704, 323, 85, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (321, '2023-10-23', 622, 324, 85, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (322, '2023-10-23', 691, 325, 85, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (323, '2023-10-23', 631, 326, 85, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (324, '2023-10-23', 632, 327, 85, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (325, '2023-10-23', 826, 328, 85, NULL, '12.0000', '500.0000', '500.0000', '500.0000', '500.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 (326, '2023-10-23', 849, 329, 85, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (327, '2023-10-23', 850, 330, 85, NULL, '2.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (328, '2023-10-23', 727, 331, 86, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (329, '2023-10-23', 655, 332, 87, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (330, '2023-10-23', 735, 333, 87, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (331, '2023-10-23', 683, 334, 87, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (332, '2023-10-23', 626, 335, 87, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (333, '2023-10-23', 823, 336, 87, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (334, '2023-10-23', 697, 337, 87, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (335, '2023-10-23', 786, 338, 87, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (336, '2023-10-23', 624, 339, 88, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (337, '2023-10-23', 626, 340, 88, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (338, '2023-10-23', 754, 341, 88, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (339, '2023-10-23', 740, 342, 88, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (340, '2023-10-23', 789, 343, 88, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (341, '2023-10-23', 757, 344, 88, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (342, '2023-10-23', 826, 345, 88, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (343, '2023-10-23', 754, 346, 89, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (344, '2023-10-23', 684, 347, 90, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (345, '2023-10-23', 754, 348, 90, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (346, '2023-10-23', 740, 349, 90, NULL, '4.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (347, '2023-10-23', 820, 350, 90, NULL, '3.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (348, '2023-10-23', 722, 351, 90, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (349, '2023-10-23', 823, 352, 90, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (350, '2023-10-23', 737, 353, 90, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (351, '2023-10-23', 745, 354, 90, NULL, '1.0000', '2000.0000', '2000.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 (352, '2023-10-23', 622, 355, 91, NULL, '2.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (353, '2023-10-23', 626, 356, 91, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (354, '2023-10-23', 683, 357, 92, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (355, '2023-10-23', 676, 358, 92, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (356, '2023-10-23', 823, 359, 92, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (357, '2023-10-23', 742, 360, 92, NULL, '2.0000', '65000.0000', '65000.0000', '65000.0000', '65000.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 (358, '2023-10-23', 795, 361, 92, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (359, '2023-10-23', 741, 362, 92, NULL, '4.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (360, '2023-10-23', 736, 363, 92, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (361, '2023-10-23', 646, 364, 92, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (362, '2023-10-23', 826, 365, 92, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (363, '2023-10-23', 692, 366, 93, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (364, '2023-10-23', 627, 367, 93, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (365, '2023-10-23', 624, 368, 93, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (366, '2023-10-23', 823, 369, 93, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (367, '2023-10-23', 741, 370, 94, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (368, '2023-10-23', 722, 371, 94, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (369, '2023-10-23', 646, 372, 94, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (370, '2023-10-23', 736, 373, 94, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (371, '2023-10-23', 823, 374, 95, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (372, '2023-10-23', 822, 375, 95, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (373, '2023-10-23', 742, 376, 95, NULL, '1.0000', '65000.0000', '65000.0000', '65000.0000', '65000.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 (374, '2023-10-23', 790, 377, 95, NULL, '5.0000', '500.0000', '500.0000', '500.0000', '500.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 (375, '2023-10-23', 846, 378, 95, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (376, '2023-10-23', 781, 379, 95, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (377, '2023-10-23', 707, 380, 95, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (378, '2023-10-23', 622, 381, 95, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (379, '2023-10-23', 697, 382, 95, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (380, '2023-10-23', 738, 383, 96, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (381, '2023-10-23', 745, 384, 96, NULL, '1.0000', '2000.0000', '2000.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 (382, '2023-10-23', 626, 385, 96, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (383, '2023-10-23', 740, 386, 96, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (384, '2023-10-23', 823, 387, 96, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (385, '2023-10-24', 703, 388, 97, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (386, '2023-10-24', 632, 389, 97, NULL, '1.0000', '2000.0000', '2000.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 (387, '2023-10-24', 736, 390, 97, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (388, '2023-10-24', 851, 391, 97, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (389, '2023-10-24', 683, 392, 98, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (390, '2023-10-24', 826, 393, 98, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (391, '2023-10-24', 824, 394, 99, NULL, '1.0000', '2000.0000', '2000.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 (392, '2023-10-24', 823, 395, 99, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (393, '2023-10-24', 622, 396, 99, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (394, '2023-10-24', 658, 397, 99, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (395, '2023-10-24', 699, 398, 99, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (396, '2023-10-24', 711, 399, 99, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (397, '2023-10-24', 695, 400, 99, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (398, '2023-10-24', 736, 401, 100, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (399, '2023-10-24', 823, 402, 100, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (400, '2023-10-24', 683, 403, 100, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (401, '2023-10-24', 646, 404, 100, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (402, '2023-10-24', 790, 405, 101, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (403, '2023-10-24', 781, 406, 101, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (404, '2023-10-24', 790, 407, 101, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (405, '2023-10-24', 684, 408, 102, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (406, '2023-10-24', 852, 409, 102, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (407, '2023-10-24', 707, 410, 102, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (408, '2023-10-24', 848, 411, 102, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (409, '2023-10-24', 786, 412, 103, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (410, '2023-10-24', 659, 413, 104, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (411, '2023-10-24', 826, 414, 104, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (412, '2023-10-24', 651, 415, 105, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (413, '2023-10-24', 848, 416, 105, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (414, '2023-10-24', 816, 417, 105, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (415, '2023-10-24', 826, 418, 105, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (416, '2023-10-24', 848, 419, 106, NULL, '2.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (417, '2023-10-24', 722, 420, 106, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (418, '2023-10-25', 738, 421, 107, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (419, '2023-10-25', 741, 422, 107, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (420, '2023-10-25', 740, 423, 107, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (421, '2023-10-25', 691, 424, 108, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (422, '2023-10-25', 696, 425, 108, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (423, '2023-10-25', 675, 426, 108, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (424, '2023-10-25', 681, 427, 108, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (425, '2023-10-25', 823, 428, 108, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (426, '2023-10-25', 736, 429, 108, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (427, '2023-10-25', 738, 430, 109, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (428, '2023-10-25', 741, 431, 109, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (429, '2023-10-25', 740, 432, 109, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (430, '2023-10-25', 813, 433, 110, NULL, '2.0000', '8000.0000', '8000.0000', '8000.0000', '8000.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 (431, '2023-10-25', 647, 434, 111, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (432, '2023-10-25', 823, 435, 111, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (433, '2023-10-25', 754, 436, 112, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (434, '2023-10-25', 692, 437, 113, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (435, '2023-10-25', 719, 438, 113, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (436, '2023-10-25', 631, 439, 113, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (437, '2023-10-25', 741, 440, 113, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (438, '2023-10-25', 625, 441, 114, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (439, '2023-10-25', 692, 442, 114, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (440, '2023-10-25', 823, 443, 115, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (441, '2023-10-25', 624, 444, 115, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (442, '2023-10-26', 624, 445, 116, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (443, '2023-10-26', 630, 446, 116, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (444, '2023-10-26', 697, 447, 117, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (445, '2023-10-26', 631, 448, 117, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (446, '2023-10-26', 824, 449, 117, NULL, '1.0000', '2000.0000', '2000.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 (447, '2023-10-26', 740, 450, 117, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (448, '2023-10-26', 718, 451, 118, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (449, '2023-10-26', 684, 452, 118, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (450, '2023-10-26', 741, 453, 118, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (451, '2023-10-26', 734, 454, 118, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (452, '2023-10-26', 735, 455, 118, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (453, '2023-10-26', 633, 456, 118, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (454, '2023-10-26', 823, 457, 118, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (455, '2023-10-26', 629, 458, 118, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (456, '2023-10-26', 730, 459, 118, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (457, '2023-10-26', 631, 460, 119, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (458, '2023-10-26', 719, 461, 119, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (459, '2023-10-26', 677, 462, 119, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (460, '2023-10-26', 823, 463, 119, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (461, '2023-10-26', 823, 464, 120, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (462, '2023-10-26', 740, 465, 120, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (463, '2023-10-26', 625, 466, 120, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (464, '2023-10-26', 622, 467, 121, NULL, '2.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (465, '2023-10-26', 624, 468, 121, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (466, '2023-10-26', 651, 469, 121, NULL, '3.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (467, '2023-10-26', 823, 470, 121, NULL, '5.0000', '500.0000', '500.0000', '500.0000', '500.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 (468, '2023-10-26', 736, 471, 121, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (469, '2023-10-26', 826, 472, 121, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (470, '2023-10-26', 826, 473, 121, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (471, '2023-10-26', 651, 474, 122, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (472, '2023-10-26', 634, 475, 122, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (473, '2023-10-26', 677, 476, 122, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (474, '2023-10-26', 741, 477, 122, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (475, '2023-10-26', 823, 478, 122, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (476, '2023-10-26', 622, 479, 122, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (477, '2023-10-26', 673, 480, 122, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (478, '2023-10-26', 631, 481, 122, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (479, '2023-10-26', 739, 482, 122, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (480, '2023-10-26', 851, 483, 122, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (481, '2023-10-26', 740, 484, 122, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (482, '2023-10-26', 742, 485, 122, NULL, '1.0000', '65000.0000', '65000.0000', '65000.0000', '65000.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 (483, '2023-10-26', 823, 486, 123, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (484, '2023-10-26', 622, 487, 124, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (485, '2023-10-26', 631, 488, 124, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (486, '2023-10-26', 678, 489, 124, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (487, '2023-10-26', 716, 490, 124, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (488, '2023-10-26', 704, 491, 124, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (489, '2023-10-26', 737, 492, 124, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (490, '2023-10-26', 783, 493, 125, NULL, '3.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (491, '2023-10-27', 816, 494, 126, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (492, '2023-10-27', 633, 495, 127, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (493, '2023-10-27', 630, 496, 127, NULL, '1.0000', '7900.0000', '7900.0000', '9900.0000', '9900.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 (494, '2023-10-27', 826, 497, 127, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (495, '2023-10-27', 740, 498, 127, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (496, '2023-10-27', 738, 499, 128, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (497, '2023-10-27', 816, 500, 128, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (498, '2023-10-27', 651, 501, 128, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (499, '2023-10-27', 656, 502, 128, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (500, '2023-10-27', 655, 503, 128, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (501, '2023-10-27', 720, 504, 128, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (502, '2023-10-27', 826, 505, 128, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (503, '2023-10-27', 823, 506, 128, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (504, '2023-10-27', 845, 507, 129, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (505, '2023-10-27', 719, 508, 129, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (506, '2023-10-27', 826, 509, 129, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (507, '2023-10-27', 719, 510, 130, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (508, '2023-10-27', 707, 511, 130, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (509, '2023-10-27', 683, 512, 130, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (510, '2023-10-27', 826, 513, 130, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (511, '2023-10-27', 631, 514, 130, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (512, '2023-10-27', 740, 515, 130, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (513, '2023-10-27', 853, 516, 130, NULL, '1.0000', '5500.0000', '5500.0000', '5500.0000', '5500.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 (514, '2023-10-27', 845, 517, 130, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (515, '2023-10-27', 622, 518, 131, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (516, '2023-10-27', 697, 519, 131, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (517, '2023-10-27', 789, 520, 131, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (518, '2023-10-27', 816, 521, 131, NULL, '1.0000', '3000.0000', '3000.0000', '5000.0000', '5000.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 (519, '2023-10-27', 634, 522, 131, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (520, '2023-10-27', 823, 523, 131, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (521, '2023-10-27', 826, 524, 131, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (522, '2023-10-27', 735, 525, 132, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (523, '2023-10-27', 816, 526, 133, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (524, '2023-10-27', 845, 527, 133, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (525, '2023-10-27', 698, 528, 134, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (526, '2023-10-27', 854, 529, 134, NULL, '1.0000', '8900.0000', '8900.0000', '9900.0000', '9900.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 (527, '2023-10-27', 625, 530, 134, NULL, '1.0000', '7900.0000', '7900.0000', '9400.0000', '9400.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 (528, '2023-10-27', 823, 531, 134, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (529, '2023-10-27', 812, 532, 134, NULL, '1.0000', '6000.0000', '6000.0000', '6000.0000', '6000.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 (530, '2023-10-27', 826, 533, 134, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (531, '2023-10-27', 854, 534, 134, NULL, '3.0000', '8900.0000', '8900.0000', '9900.0000', '9900.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 (532, '2023-10-27', 622, 535, 135, NULL, '2.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (533, '2023-10-27', 658, 536, 135, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (534, '2023-10-27', 855, 537, 135, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (535, '2023-10-27', 816, 538, 135, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (536, '2023-10-27', 823, 539, 135, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (537, '2023-10-27', 741, 540, 136, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (538, '2023-10-27', 740, 541, 136, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (539, '2023-10-27', 624, 542, 136, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (540, '2023-10-27', 734, 543, 136, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (541, '2023-10-27', 823, 544, 136, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (542, '2023-10-27', 651, 545, 136, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (543, '2023-10-27', 740, 546, 137, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (544, '2023-10-27', 754, 547, 137, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (545, '2023-10-27', 722, 548, 138, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (546, '2023-10-27', 741, 549, 138, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (547, '2023-10-27', 737, 550, 138, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (548, '2023-10-28', 629, 551, 139, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (549, '2023-10-28', 655, 552, 139, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (550, '2023-10-28', 781, 553, 139, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (551, '2023-10-28', 729, 554, 140, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (552, '2023-10-28', 629, 555, 140, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (553, '2023-10-28', 626, 556, 140, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (554, '2023-10-28', 677, 557, 140, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (555, '2023-10-28', 719, 558, 140, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (556, '2023-10-28', 624, 559, 140, NULL, '3.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (557, '2023-10-28', 650, 560, 140, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (558, '2023-10-28', 630, 561, 140, NULL, '1.0000', '7900.0000', '7900.0000', '8900.0000', '8900.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 (559, '2023-10-28', 735, 562, 140, NULL, '4.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (560, '2023-10-28', 631, 563, 140, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (561, '2023-10-28', 692, 564, 140, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (562, '2023-10-28', 651, 565, 140, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (563, '2023-10-28', 623, 566, 140, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (564, '2023-10-28', 719, 567, 140, NULL, '2.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (565, '2023-10-28', 735, 568, 140, NULL, '3.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (566, '2023-10-28', 737, 569, 140, NULL, '3.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (567, '2023-10-28', 684, 570, 140, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (568, '2023-10-28', 823, 571, 140, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (569, '2023-10-28', 734, 572, 140, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (570, '2023-10-28', 732, 573, 140, NULL, '3.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (571, '2023-10-28', 722, 574, 140, NULL, '2.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (572, '2023-10-28', 679, 575, 141, NULL, '3.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (573, '2023-10-28', 728, 576, 142, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (574, '2023-10-28', 624, 577, 142, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (575, '2023-10-28', 659, 578, 142, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (576, '2023-10-28', 730, 579, 142, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (577, '2023-10-28', 631, 580, 142, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (578, '2023-10-28', 826, 581, 142, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (579, '2023-10-28', 658, 582, 142, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (580, '2023-10-28', 658, 583, 142, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (581, '2023-10-28', 740, 584, 143, NULL, '12.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (582, '2023-10-28', 787, 585, 143, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (583, '2023-10-28', 844, 586, 143, NULL, '3.0000', '2000.0000', '2000.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 (584, '2023-10-28', 722, 587, 144, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (585, '2023-10-28', 711, 588, 145, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (586, '2023-10-28', 633, 589, 145, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (587, '2023-10-28', 622, 590, 145, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (588, '2023-10-28', 823, 591, 145, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (589, '2023-10-28', 632, 592, 145, NULL, '4.0000', '2000.0000', '2000.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 (590, '2023-10-28', 707, 593, 145, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (591, '2023-10-28', 718, 594, 145, NULL, '1.0000', '13000.0000', '13000.0000', '20000.0000', '20000.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 (592, '2023-10-28', 824, 595, 145, NULL, '1.0000', '2000.0000', '2000.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 (593, '2023-10-28', 824, 596, 146, NULL, '1.0000', '2000.0000', '2000.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 (594, '2023-10-28', 708, 597, 147, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (595, '2023-10-28', 823, 598, 147, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (596, '2023-10-28', 646, 599, 148, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (597, '2023-10-28', 622, 600, 148, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (598, '2023-10-28', 668, 601, 148, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (599, '2023-10-28', 635, 602, 148, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (600, '2023-10-28', 826, 603, 148, NULL, '5.0000', '500.0000', '500.0000', '500.0000', '500.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 (601, '2023-10-28', 658, 604, 148, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (602, '2023-10-28', 737, 605, 149, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (603, '2023-10-28', 729, 606, 149, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (604, '2023-10-28', 826, 607, 149, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (605, '2023-10-28', 816, 608, 150, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (606, '2023-10-28', 703, 609, 151, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (607, '2023-10-28', 719, 610, 151, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (608, '2023-10-28', 692, 611, 151, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (609, '2023-10-28', 697, 612, 151, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (610, '2023-10-28', 823, 613, 151, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (611, '2023-10-28', 731, 614, 151, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (612, '2023-10-28', 629, 615, 152, NULL, '1.0000', '9900.0000', '9900.0000', '10900.0000', '10900.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 (613, '2023-10-28', 735, 616, 152, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (614, '2023-10-28', 790, 617, 153, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (615, '2023-10-28', 846, 618, 153, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (616, '2023-10-28', 781, 619, 153, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (617, '2023-10-28', 754, 620, 154, NULL, '3.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (618, '2023-10-28', 760, 621, 154, NULL, '3.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (619, '2023-10-28', 848, 622, 155, NULL, '2.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (620, '2023-10-28', 722, 623, 155, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (621, '2023-10-29', 658, 624, 156, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (622, '2023-10-29', 700, 625, 156, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (623, '2023-10-29', 729, 626, 156, NULL, '3.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (624, '2023-10-29', 726, 627, 156, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (625, '2023-10-29', 678, 628, 157, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (626, '2023-10-29', 672, 629, 157, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (627, '2023-10-29', 659, 630, 157, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (628, '2023-10-29', 684, 631, 157, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (629, '2023-10-29', 631, 632, 157, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (630, '2023-10-29', 738, 633, 157, NULL, '3.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (631, '2023-10-29', 734, 634, 157, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (632, '2023-10-29', 648, 635, 158, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (633, '2023-10-29', 624, 636, 158, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (634, '2023-10-29', 826, 637, 158, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (635, '2023-10-29', 823, 638, 159, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (636, '2023-10-29', 734, 639, 159, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (637, '2023-10-29', 624, 640, 160, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (638, '2023-10-29', 692, 641, 160, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (639, '2023-10-29', 735, 642, 160, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (640, '2023-10-29', 848, 643, 160, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (641, '2023-10-29', 634, 644, 160, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (642, '2023-10-29', 707, 645, 160, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (643, '2023-10-29', 680, 646, 160, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (644, '2023-10-29', 823, 647, 160, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (645, '2023-10-29', 741, 648, 160, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (646, '2023-10-29', 740, 649, 160, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (647, '2023-10-29', 738, 650, 160, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (648, '2023-10-29', 715, 651, 160, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (649, '2023-10-29', 735, 652, 161, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (650, '2023-10-29', 731, 653, 161, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (651, '2023-10-29', 622, 654, 162, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (652, '2023-10-29', 651, 655, 162, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (653, '2023-10-29', 823, 656, 162, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (654, '2023-10-29', 735, 657, 163, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (655, '2023-10-29', 741, 658, 163, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (656, '2023-10-29', 681, 659, 163, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (657, '2023-10-29', 719, 660, 163, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (658, '2023-10-29', 643, 661, 163, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (659, '2023-10-29', 699, 662, 164, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (660, '2023-10-29', 651, 663, 164, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (661, '2023-10-29', 826, 664, 164, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (662, '2023-10-29', 722, 680, 166, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (663, '2023-10-29', 719, 681, 166, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (664, '2023-10-29', 754, 682, 166, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (665, '2023-10-29', 791, 683, 166, NULL, '1.0000', '2000.0000', '2000.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 (666, '2023-10-29', 719, 690, 168, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (667, '2023-10-29', 759, 691, 168, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (668, '2023-10-29', 748, 692, 168, NULL, '1.0000', '7000.0000', '7000.0000', '7000.0000', '7000.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 (669, '2023-10-29', 719, 693, 169, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (670, '2023-10-29', 779, 694, 169, NULL, '1.0000', '6300.0000', '6300.0000', '6300.0000', '6300.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 (671, '2023-10-29', 834, 695, 169, NULL, '1.0000', '8000.0000', '8000.0000', '8000.0000', '8000.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 (672, '2023-10-29', 826, 696, 170, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (673, '2023-10-29', 823, 706, 172, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (674, '2023-10-29', 816, 707, 172, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (675, '2023-10-29', 624, 713, 173, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (676, '2023-10-29', 683, 714, 173, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (677, '2023-10-29', 826, 715, 173, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (678, '2023-10-29', 719, 716, 174, NULL, '2.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (679, '2023-10-29', 626, 717, 174, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (680, '2023-10-29', 626, 718, 174, NULL, '4.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (681, '2023-10-29', 677, 719, 174, NULL, '4.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (682, '2023-10-29', 754, 720, 175, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (683, '2023-10-29', 783, 721, 175, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (684, '2023-10-29', 622, 722, 176, NULL, '2.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (685, '2023-10-29', 702, 723, 176, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (686, '2023-10-29', 753, 724, 176, NULL, '2.0000', '12000.0000', '12000.0000', '12000.0000', '12000.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 (687, '2023-10-29', 821, 725, 176, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (688, '2023-10-29', 823, 726, 176, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (689, '2023-10-29', 711, 727, 176, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (690, '2023-10-29', 791, 728, 176, NULL, '1.0000', '2000.0000', '2000.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 (691, '2023-10-29', 702, 729, 177, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (692, '2023-10-29', 692, 730, 178, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (693, '2023-10-29', 719, 731, 178, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (694, '2023-10-29', 823, 732, 178, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (695, '2023-10-29', 787, 733, 178, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (696, '2023-10-29', 719, 734, 179, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (697, '2023-10-29', 643, 735, 179, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (698, '2023-10-29', 786, 736, 180, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (699, '2023-10-29', 786, 737, 181, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (700, '2023-10-30', 856, 741, 183, NULL, '2.0000', '8090.9091', '8900.0000', '32363.6400', '35600.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 (701, '2023-10-30', 890, 742, 183, NULL, '2.0000', '9900.0000', '9900.0000', '39600.0000', '39600.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 (702, '2023-10-30', 914, 743, 183, NULL, '2.0000', '8900.0000', '8900.0000', '35600.0000', '35600.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 (703, '2023-10-30', 941, 744, 183, NULL, '2.0000', '6900.0000', '6900.0000', '35600.0000', '35600.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 (704, '2023-10-30', 932, 745, 183, NULL, '2.0000', '7900.0000', '7900.0000', '31600.0000', '31600.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 (705, '2023-10-30', 936, 746, 183, NULL, '2.0000', '9900.0000', '9900.0000', '39600.0000', '39600.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 (706, '2023-10-30', 937, 747, 183, NULL, '2.0000', '8900.0000', '8900.0000', '39600.0000', '39600.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 (707, '2023-10-30', 884, 748, 183, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (708, '2023-10-30', 906, 749, 183, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (709, '2023-10-30', 1076, 750, 183, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (710, '2023-10-30', 1086, 751, 183, NULL, '4.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (711, '2023-10-30', 1059, 752, 183, NULL, '8.0000', '500.0000', '500.0000', '500.0000', '500.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 (712, '2023-10-30', 956, 753, 184, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (713, '2023-10-30', 892, 754, 184, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (714, '2023-10-30', 953, 755, 184, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (715, '2023-10-30', 867, 756, 184, NULL, '1.0000', '8900.0000', '8900.0000', '7900.0000', '7900.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 (716, '2023-10-30', 1081, 757, 184, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (717, '2023-10-30', 1080, 758, 184, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (718, '2023-10-30', 960, 759, 184, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (719, '2023-10-30', 1087, 760, 184, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (720, '2023-10-30', 867, 761, 185, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (721, '2023-10-30', 860, 762, 185, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (722, '2023-10-30', 1054, 763, 185, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (723, '2023-10-30', 1110, 764, 185, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (724, '2023-10-30', 953, 765, 186, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (725, '2023-10-30', 937, 766, 186, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (726, '2023-10-30', 1057, 767, 186, NULL, '1.0000', '2000.0000', '2000.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 (727, '2023-10-30', 1050, 768, 186, NULL, '2.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (728, '2023-10-30', 1091, 769, 187, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (729, '2023-10-30', 856, 770, 188, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (730, '2023-10-30', 858, 771, 188, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (731, '2023-10-30', 941, 772, 188, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (732, '2023-10-30', 1092, 773, 188, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (733, '2023-10-30', 1094, 774, 188, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (734, '2023-10-30', 1059, 775, 188, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (735, '2023-10-30', 1064, 776, 189, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (736, '2023-10-30', 945, 777, 190, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (737, '2023-10-30', 866, 778, 190, NULL, '4.0000', '2000.0000', '2000.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 (738, '2023-10-30', 937, 779, 190, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (739, '2023-10-30', 1059, 780, 190, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (740, '2023-10-30', 1086, 781, 190, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (741, '2023-10-30', 890, 782, 190, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (742, '2023-10-30', 1059, 783, 190, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (743, '2023-10-30', 1059, 784, 191, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (744, '2023-10-30', 863, 785, 192, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (745, '2023-10-31', 940, 786, 193, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (746, '2023-10-31', 936, 787, 193, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (747, '2023-10-31', 865, 788, 193, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (748, '2023-10-31', 911, 789, 194, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (749, '2023-10-31', 867, 790, 194, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (750, '2023-10-31', 892, 791, 194, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (751, '2023-10-31', 1047, 792, 194, NULL, '1.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (752, '2023-10-31', 892, 793, 195, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (753, '2023-10-31', 931, 794, 195, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (754, '2023-10-31', 865, 795, 195, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (755, '2023-10-31', 1086, 796, 195, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (756, '2023-10-31', 1111, 797, 195, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (757, '2023-10-31', 949, 798, 196, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (758, '2023-10-31', 935, 799, 196, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (759, '2023-10-31', 945, 800, 196, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (760, '2023-10-31', 866, 801, 196, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (761, '2023-10-31', 953, 802, 196, NULL, '1.0000', '13000.0000', '13000.0000', '20000.0000', '20000.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 (762, '2023-10-31', 1010, 803, 196, NULL, '1.0000', '85000.0000', '85000.0000', '85000.0000', '85000.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 (763, '2023-10-31', 1054, 804, 196, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (764, '2023-10-31', 1051, 805, 196, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (765, '2023-10-31', 1057, 806, 196, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (766, '2023-10-31', 1112, 807, 196, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (767, '2023-10-31', 864, 813, 198, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (768, '2023-10-31', 884, 814, 198, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (769, '2023-10-31', 917, 815, 198, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (770, '2023-10-31', 1090, 816, 198, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (771, '2023-10-31', 1049, 817, 198, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (772, '2023-10-31', 1059, 818, 198, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (776, '2023-10-31', 856, 840, 204, NULL, '4.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (777, '2023-10-31', 1059, 841, 204, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (778, '2023-10-31', 1111, 842, 204, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (779, '2023-10-31', 1074, 843, 204, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (783, '2023-11-01', 886, 881, 214, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (784, '2023-11-01', 1113, 882, 214, NULL, '1.0000', '10400.0000', '10400.0000', '10400.0000', '10400.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 (785, '2023-11-01', 858, 883, 214, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (786, '2023-11-01', 1080, 884, 214, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (787, '2023-11-01', 1086, 885, 214, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (788, '2023-11-01', 932, 886, 214, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (789, '2023-11-01', 960, 887, 215, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (790, '2023-11-01', 882, 888, 215, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (791, '2023-11-01', 858, 889, 215, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (792, '2023-11-01', 1111, 890, 215, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (793, '2023-11-01', 1086, 891, 215, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.0000', '-1.0000', 1, 1, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (794, '2023-11-01', 1080, 892, 215, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (795, '2023-11-01', 1081, 893, 215, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (796, '2023-11-01', 1088, 894, 215, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (797, '2023-11-01', 1085, 895, 215, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (798, '2023-11-01', 1083, 896, 215, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (799, '2023-11-01', 882, 897, 216, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (800, '2023-11-01', 1111, 898, 216, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (801, '2023-11-01', 1055, 899, 217, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (802, '2023-11-01', 953, 900, 218, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (803, '2023-11-01', 1051, 901, 218, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (804, '2023-11-01', 865, 902, 218, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (805, '2023-11-01', 953, 903, 219, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (806, '2023-11-01', 876, 904, 219, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (807, '2023-11-01', 957, 905, 219, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (808, '2023-11-01', 865, 906, 219, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (809, '2023-11-01', 942, 907, 219, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (810, '2023-11-01', 1059, 908, 219, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (811, '2023-11-01', 1049, 909, 219, NULL, '2.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (812, '2023-11-01', 1047, 910, 219, NULL, '1.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (813, '2023-11-01', 1092, 911, 220, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (814, '2023-11-01', 955, 912, 220, NULL, '1.0000', '10900.0000', '10900.0000', '10900.0000', '10900.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 (815, '2023-11-01', 877, 913, 220, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (816, '2023-11-01', 1059, 914, 220, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (817, '2023-11-01', 949, 915, 220, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (818, '2023-11-01', 1047, 932, 224, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (819, '2023-11-01', 1074, 933, 224, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (820, '2023-11-01', 918, 934, 224, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (821, '2023-11-01', 860, 935, 224, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (822, '2023-11-01', 865, 936, 224, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (823, '2023-11-01', 1059, 937, 224, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (824, '2023-11-01', 1086, 938, 224, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (825, '2023-11-01', 1059, 939, 225, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (826, '2023-11-01', 1086, 940, 226, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (827, '2023-11-01', 1037, 945, 227, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (832, '2023-11-01', 877, 950, 229, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (833, '2023-11-01', 1059, 951, 229, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (834, '2023-11-01', 887, 952, 229, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (835, '2023-11-01', 1036, 953, 229, NULL, '1.0000', '2700.0000', '2700.0000', '2700.0000', '2700.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 (838, '2023-11-01', 1016, 965, 233, NULL, '1.0000', '2000.0000', '2000.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 (839, '2023-11-01', 1051, 966, 233, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (840, '2023-11-01', 1047, 975, 237, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (841, '2023-11-01', 1080, 976, 238, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (842, '2023-11-01', 914, 977, 238, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (843, '2023-11-01', 926, 978, 238, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (844, '2023-11-01', 918, 979, 238, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (845, '2023-11-01', 867, 980, 238, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (846, '2023-11-01', 890, 981, 238, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (847, '2023-11-01', 960, 982, 238, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (848, '2023-11-01', 1111, 983, 238, NULL, '9.0000', '500.0000', '500.0000', '500.0000', '500.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 (849, '2023-11-01', 859, 984, 239, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (850, '2023-11-01', 1114, 985, 239, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (851, '2023-11-01', 1111, 986, 239, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (852, '2023-11-02', 882, 987, 240, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (853, '2023-11-02', 890, 988, 240, NULL, '3.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (854, '2023-11-02', 867, 989, 240, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (855, '2023-11-02', 856, 990, 241, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (856, '2023-11-02', 912, 991, 241, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (857, '2023-11-02', 867, 992, 241, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (858, '2023-11-02', 1059, 993, 241, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (859, '2023-11-02', 1054, 994, 241, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (860, '2023-11-02', 863, 995, 242, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (861, '2023-11-02', 926, 996, 242, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (862, '2023-11-02', 1090, 997, 242, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (863, '2023-11-02', 1002, 998, 242, NULL, '1.0000', '9000.0000', '9000.0000', '9000.0000', '9000.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 (864, '2023-11-02', 1086, 999, 242, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (865, '2023-11-02', 1111, 1000, 242, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (866, '2023-11-02', 917, 1001, 243, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (867, '2023-11-02', 950, 1002, 243, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (868, '2023-11-02', 1088, 1003, 243, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (869, '2023-11-02', 936, 1004, 244, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (870, '2023-11-02', 856, 1005, 244, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (871, '2023-11-02', 860, 1006, 244, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (872, '2023-11-02', 1059, 1007, 244, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (873, '2023-11-02', 1086, 1008, 244, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (874, '2023-11-02', 1050, 1009, 244, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (875, '2023-11-02', 867, 1010, 245, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (876, '2023-11-02', 887, 1011, 245, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (877, '2023-11-02', 1059, 1012, 245, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (878, '2023-11-02', 953, 1013, 246, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (879, '2023-11-02', 1092, 1014, 246, NULL, '3.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (880, '2023-11-02', 937, 1015, 247, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (881, '2023-11-02', 1115, 1016, 247, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (882, '2023-11-02', 1049, 1017, 247, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (883, '2023-11-02', 859, 1018, 247, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (884, '2023-11-02', 1059, 1019, 247, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (885, '2023-11-02', 885, 1020, 247, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (886, '2023-11-02', 1086, 1021, 248, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (887, '2023-11-02', 1090, 1022, 249, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (888, '2023-11-02', 1042, 1023, 249, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (889, '2023-11-02', 901, 1024, 250, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (890, '2023-11-02', 869, 1025, 250, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (891, '2023-11-02', 942, 1026, 250, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (892, '2023-11-02', 1090, 1027, 250, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (893, '2023-11-02', 1086, 1028, 250, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (894, '2023-11-02', 865, 1029, 250, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (895, '2023-11-02', 1059, 1030, 250, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (896, '2023-11-02', 956, 1031, 251, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (897, '2023-11-02', 936, 1032, 251, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (898, '2023-11-02', 890, 1033, 251, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (899, '2023-11-02', 1086, 1034, 251, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (900, '2023-11-02', 956, 1035, 252, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (901, '2023-11-02', 942, 1036, 252, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (902, '2023-11-02', 1076, 1037, 252, NULL, '2.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (903, '2023-11-02', 1051, 1038, 252, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (904, '2023-11-02', 1059, 1039, 252, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (905, '2023-11-02', 1086, 1040, 253, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (906, '2023-11-02', 1035, 1041, 253, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (907, '2023-11-02', 1047, 1042, 253, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (908, '2023-11-02', 956, 1043, 253, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (909, '2023-11-02', 1049, 1044, 253, NULL, '4.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (910, '2023-11-02', 953, 1045, 253, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (911, '2023-11-02', 865, 1046, 253, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (914, '2023-11-02', 1016, 1049, 255, NULL, '1.0000', '2000.0000', '2000.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 (915, '2023-11-02', 1059, 1050, 255, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (916, '2023-11-02', 1049, 1051, 256, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (917, '2023-11-02', 865, 1052, 257, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (918, '2023-11-02', 918, 1053, 257, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (919, '2023-11-02', 858, 1054, 257, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (920, '2023-11-02', 1111, 1055, 257, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (921, '2023-11-02', 1051, 1056, 257, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (922, '2023-11-02', 887, 1057, 257, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (923, '2023-11-02', 1059, 1058, 257, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (924, '2023-11-03', 933, 1065, 259, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (925, '2023-11-03', 925, 1066, 259, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (926, '2023-11-03', 929, 1067, 259, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (927, '2023-11-03', 1111, 1068, 259, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (928, '2023-11-03', 1115, 1059, 258, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (929, '2023-11-03', 1059, 1060, 258, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (930, '2023-11-03', 866, 1061, 258, NULL, '1.0000', '2000.0000', '2000.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 (931, '2023-11-03', 933, 1062, 258, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (932, '2023-11-03', 937, 1063, 258, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (933, '2023-11-03', 911, 1064, 258, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (934, '2023-11-03', 1080, 1072, 260, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (935, '2023-11-03', 936, 1073, 260, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (936, '2023-11-03', 890, 1074, 260, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (937, '2023-11-03', 858, 1075, 261, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (938, '2023-11-03', 872, 1076, 261, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (939, '2023-11-03', 953, 1077, 261, NULL, '2.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (940, '2023-11-03', 1059, 1078, 261, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (941, '2023-11-03', 1072, 1084, 262, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (942, '2023-11-03', 1042, 1085, 263, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (943, '2023-11-03', 1055, 1086, 263, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (944, '2023-11-03', 860, 1091, 266, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (945, '2023-11-03', 861, 1092, 266, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (946, '2023-11-03', 1059, 1093, 266, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (947, '2023-11-03', 1047, 1094, 267, NULL, '2.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (948, '2023-11-03', 949, 1095, 268, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (949, '2023-11-03', 946, 1096, 268, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (950, '2023-11-03', 866, 1097, 268, NULL, '1.0000', '2000.0000', '2000.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 (951, '2023-11-03', 858, 1098, 268, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (952, '2023-11-03', 859, 1099, 268, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (953, '2023-11-03', 887, 1100, 268, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (954, '2023-11-03', 1087, 1101, 268, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (955, '2023-11-03', 1059, 1102, 268, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (956, '2023-11-03', 1091, 1103, 268, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (957, '2023-11-03', 865, 1104, 268, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (958, '2023-11-03', 949, 1105, 268, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (959, '2023-11-03', 958, 1106, 268, NULL, '1.0000', '5500.0000', '5500.0000', '5500.0000', '5500.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 (960, '2023-11-03', 1047, 1107, 269, NULL, '2.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (961, '2023-11-03', 956, 1108, 270, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (962, '2023-11-03', 869, 1109, 270, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (963, '2023-11-03', 866, 1110, 270, NULL, '1.0000', '2000.0000', '2000.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 (964, '2023-11-03', 894, 1111, 270, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (965, '2023-11-03', 1035, 1112, 270, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (966, '2023-11-03', 1097, 1113, 270, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (967, '2023-11-03', 1059, 1114, 270, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (968, '2023-11-03', 901, 1115, 270, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (969, '2023-11-03', 959, 1116, 270, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (970, '2023-11-03', 865, 1117, 271, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (971, '2023-11-03', 911, 1118, 271, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (972, '2023-11-03', 1088, 1119, 271, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (973, '2023-11-03', 1080, 1120, 271, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (974, '2023-11-03', 932, 1121, 271, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (975, '2023-11-03', 858, 1122, 271, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (976, '2023-11-03', 959, 1123, 271, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (977, '2023-11-03', 1111, 1124, 271, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (978, '2023-11-03', 1059, 1125, 271, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (979, '2023-11-03', 864, 1126, 272, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (980, '2023-11-03', 865, 1127, 272, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (981, '2023-11-03', 858, 1128, 272, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (982, '2023-11-03', 1059, 1129, 272, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (983, '2023-11-03', 1051, 1130, 272, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (984, '2023-11-03', 1094, 1131, 272, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (985, '2023-11-03', 893, 1132, 272, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (986, '2023-11-03', 1097, 1133, 272, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (987, '2023-11-03', 1072, 1134, 273, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (988, '2023-11-03', 1073, 1135, 273, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (989, '2023-11-03', 860, 1136, 273, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (990, '2023-11-03', 948, 1137, 273, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (991, '2023-11-03', 1117, 1138, 273, NULL, '1.0000', '2000.0000', '2000.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 (992, '2023-11-03', 1059, 1139, 273, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (993, '2023-11-03', 1047, 1140, 274, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (994, '2023-11-03', 1086, 1141, 275, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (995, '2023-11-03', 863, 1142, 275, NULL, '3.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (996, '2023-11-03', 1035, 1143, 275, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (997, '2023-11-03', 1059, 1144, 275, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (998, '2023-11-03', 1049, 1145, 275, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (999, '2023-11-03', 948, 1146, 275, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1000, '2023-11-03', 1047, 1147, 276, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (1001, '2023-11-03', 956, 1148, 276, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (1002, '2023-11-03', 860, 1149, 276, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1003, '2023-11-03', 1074, 1150, 276, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1004, '2023-11-03', 1059, 1151, 276, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1005, '2023-11-03', 1049, 1152, 276, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (1006, '2023-11-03', 1035, 1153, 276, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1007, '2023-11-04', 929, 1154, 277, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1008, '2023-11-04', 893, 1155, 277, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1009, '2023-11-04', 859, 1156, 277, NULL, '3.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1010, '2023-11-04', 915, 1157, 277, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1011, '2023-11-04', 941, 1158, 277, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1012, '2023-11-04', 1111, 1159, 277, NULL, '8.0000', '500.0000', '500.0000', '500.0000', '500.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 (1013, '2023-11-04', 869, 1160, 278, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1014, '2023-11-04', 1048, 1161, 278, NULL, '2.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (1015, '2023-11-04', 1111, 1162, 278, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1016, '2023-11-04', 1085, 1163, 279, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1017, '2023-11-04', 1059, 1164, 279, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1018, '2023-11-04', 866, 1165, 279, NULL, '1.0000', '2000.0000', '2000.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 (1019, '2023-11-04', 938, 1166, 279, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1020, '2023-11-04', 1086, 1167, 279, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1021, '2023-11-04', 861, 1168, 280, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1022, '2023-11-04', 930, 1169, 280, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1023, '2023-11-04', 933, 1170, 280, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1024, '2023-11-04', 866, 1171, 280, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (1025, '2023-11-04', 865, 1172, 280, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1026, '2023-11-04', 960, 1173, 280, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1027, '2023-11-04', 1080, 1174, 280, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1028, '2023-11-04', 1085, 1175, 280, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1029, '2023-11-04', 1118, 1176, 280, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1030, '2023-11-04', 1119, 1177, 280, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1031, '2023-11-04', 1120, 1178, 280, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1032, '2023-11-04', 1111, 1179, 280, NULL, '13.0000', '500.0000', '500.0000', '500.0000', '500.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 (1033, '2023-11-04', 960, 1180, 280, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1034, '2023-11-04', 933, 1181, 281, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1035, '2023-11-04', 917, 1182, 281, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1036, '2023-11-04', 926, 1183, 281, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1037, '2023-11-04', 946, 1184, 281, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1038, '2023-11-04', 1059, 1185, 281, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1039, '2023-11-04', 1054, 1186, 281, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1040, '2023-11-04', 864, 1187, 282, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1041, '2023-11-04', 925, 1188, 282, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1042, '2023-11-04', 861, 1189, 282, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1043, '2023-11-04', 918, 1190, 282, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1044, '2023-11-04', 1072, 1191, 282, NULL, '2.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1045, '2023-11-04', 1059, 1192, 282, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1046, '2023-11-04', 1080, 1193, 283, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1047, '2023-11-04', 885, 1194, 284, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1048, '2023-11-04', 914, 1195, 284, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1049, '2023-11-04', 1047, 1196, 284, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (1050, '2023-11-04', 1115, 1197, 284, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1051, '2023-11-04', 1049, 1198, 284, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (1052, '2023-11-04', 867, 1199, 285, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1053, '2023-11-04', 868, 1200, 285, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1054, '2023-11-04', 893, 1201, 285, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1055, '2023-11-04', 901, 1202, 285, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1056, '2023-11-04', 933, 1203, 285, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1057, '2023-11-04', 943, 1204, 285, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1058, '2023-11-04', 866, 1205, 285, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (1059, '2023-11-04', 1111, 1206, 285, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (1060, '2023-11-04', 1086, 1207, 286, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1061, '2023-11-04', 959, 1208, 286, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1062, '2023-11-04', 960, 1209, 286, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1063, '2023-11-04', 1051, 1210, 287, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1064, '2023-11-04', 858, 1211, 288, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1065, '2023-11-04', 949, 1212, 288, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1066, '2023-11-04', 934, 1213, 288, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1068, '2023-11-04', 1038, 1222, 291, NULL, '1.0000', '1550.0000', '1550.0000', '1550.0000', '1550.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 (1069, '2023-11-04', 868, 1230, 294, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1070, '2023-11-04', 960, 1231, 294, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1071, '2023-11-04', 1111, 1232, 294, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1072, '2023-11-04', 880, 1233, 295, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1073, '2023-11-04', 889, 1234, 295, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1074, '2023-11-04', 890, 1235, 295, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1075, '2023-11-04', 950, 1236, 295, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1076, '2023-11-04', 1111, 1237, 295, NULL, '5.0000', '500.0000', '500.0000', '500.0000', '500.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 (1077, '2023-11-04', 869, 1238, 296, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1078, '2023-11-04', 882, 1239, 296, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1079, '2023-11-04', 1111, 1240, 296, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1080, '2023-11-04', 1121, 1241, 297, NULL, '2.0000', '12000.0000', '12000.0000', '12000.0000', '12000.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 (1081, '2023-11-04', 868, 1242, 298, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1082, '2023-11-04', 858, 1243, 298, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1083, '2023-11-04', 1080, 1244, 298, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1084, '2023-11-04', 1095, 1245, 298, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1085, '2023-11-04', 1059, 1246, 298, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1086, '2023-11-04', 913, 1247, 299, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1087, '2023-11-04', 1082, 1248, 299, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1088, '2023-11-04', 1059, 1249, 299, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1089, '2023-11-04', 1081, 1250, 300, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1090, '2023-11-04', 882, 1251, 300, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1091, '2023-11-04', 960, 1252, 300, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1092, '2023-11-04', 1122, 1253, 300, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1093, '2023-11-04', 1111, 1254, 300, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (1095, '2023-11-04', 954, 1256, 302, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1096, '2023-11-04', 868, 1257, 302, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1097, '2023-11-04', 859, 1258, 302, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1098, '2023-11-04', 1059, 1259, 302, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1099, '2023-11-04', 1006, 1260, 302, NULL, '1.0000', '6300.0000', '6300.0000', '6300.0000', '6300.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 (1100, '2023-11-04', 1029, 1261, 303, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1101, '2023-11-04', 996, 1262, 303, NULL, '1.0000', '7000.0000', '7000.0000', '7000.0000', '7000.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 (1102, '2023-11-05', 863, 1281, 309, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1103, '2023-11-05', 1074, 1282, 309, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1104, '2023-11-05', 1091, 1283, 309, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1105, '2023-11-05', 856, 1284, 309, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1106, '2023-11-05', 1059, 1285, 309, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1111, '2023-11-05', 933, 1323, 311, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1112, '2023-11-05', 937, 1324, 311, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1113, '2023-11-05', 872, 1325, 311, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1114, '2023-11-05', 860, 1326, 311, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1115, '2023-11-05', 907, 1327, 311, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1116, '2023-11-05', 1076, 1328, 311, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (1117, '2023-11-05', 1091, 1329, 311, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1118, '2023-11-05', 1115, 1330, 311, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1119, '2023-11-05', 865, 1331, 311, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1120, '2023-11-05', 1123, 1332, 311, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1121, '2023-11-05', 1059, 1333, 311, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1122, '2023-11-05', 869, 1370, 313, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1123, '2023-11-05', 933, 1371, 313, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1124, '2023-11-05', 894, 1372, 313, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1125, '2023-11-05', 866, 1373, 313, NULL, '1.0000', '2000.0000', '2000.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 (1126, '2023-11-05', 892, 1374, 313, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1127, '2023-11-05', 865, 1375, 313, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1128, '2023-11-05', 960, 1376, 313, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1129, '2023-11-05', 1048, 1377, 313, NULL, '2.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (1130, '2023-11-05', 1124, 1400, 318, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1134, '2023-11-05', 1090, 1460, 322, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1135, '2023-11-05', 913, 1401, 315, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1136, '2023-11-05', 897, 1402, 315, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1137, '2023-11-05', 1097, 1403, 315, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1138, '2023-11-05', 865, 1404, 315, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1139, '2023-11-05', 1125, 1454, 319, NULL, '1.0000', '10500.0000', '10500.0000', '10500.0000', '10500.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 (1140, '2023-11-05', 1035, 1488, 314, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1141, '2023-11-05', 946, 1489, 314, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1142, '2023-11-05', 948, 1490, 314, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1143, '2023-11-05', 1035, 1491, 314, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1144, '2023-11-05', 1035, 1492, 314, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1147, '2023-11-05', 856, 1520, 320, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1148, '2023-11-05', 866, 1521, 320, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (1149, '2023-11-05', 949, 1522, 320, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1150, '2023-11-05', 1087, 1523, 320, NULL, '3.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1151, '2023-11-05', 1082, 1524, 320, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1152, '2023-11-05', 1059, 1525, 320, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (1153, '2023-11-05', 1124, 1526, 320, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1154, '2023-11-05', 919, 1527, 320, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1155, '2023-11-05', 865, 1528, 320, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1156, '2023-11-05', 1037, 1461, 317, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1157, '2023-11-05', 889, 1462, 317, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1158, '2023-11-05', 948, 1463, 317, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1159, '2023-11-05', 960, 1464, 317, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1160, '2023-11-05', 1037, 1465, 317, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1164, '2023-11-05', 1090, 1535, 316, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1165, '2023-11-05', 1075, 1536, 316, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1166, '2023-11-05', 941, 1537, 316, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1167, '2023-11-05', 943, 1538, 316, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1168, '2023-11-05', 994, 1539, 316, NULL, '1.0000', '16200.0000', '16200.0000', '16200.0000', '16200.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 (1169, '2023-11-05', 1061, 1540, 316, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1170, '2023-11-05', 911, 1541, 316, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1171, '2023-11-05', 932, 1542, 316, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1172, '2023-11-05', 960, 1564, 325, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1173, '2023-11-05', 935, 1565, 325, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1174, '2023-11-05', 1111, 1566, 325, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1177, '2023-11-05', 1094, 1608, 329, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1178, '2023-11-05', 868, 1609, 329, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1179, '2023-11-05', 882, 1610, 330, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1180, '2023-11-05', 890, 1611, 330, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1181, '2023-11-05', 942, 1612, 330, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1182, '2023-11-05', 960, 1613, 330, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1183, '2023-11-05', 1111, 1614, 330, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (1190, '2023-11-05', 1074, 1594, 328, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1191, '2023-11-05', 1031, 1595, 328, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1192, '2023-11-05', 856, 1580, 327, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1193, '2023-11-05', 868, 1581, 327, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1194, '2023-11-05', 936, 1582, 327, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1195, '2023-11-05', 1126, 1583, 327, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1196, '2023-11-05', 1091, 1584, 327, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1197, '2023-11-05', 1090, 1585, 327, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1198, '2023-11-05', 949, 1615, 326, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1199, '2023-11-05', 859, 1616, 326, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1200, '2023-11-05', 867, 1617, 326, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1201, '2023-11-05', 986, 1618, 326, NULL, '1.0000', '8000.0000', '8000.0000', '8000.0000', '8000.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 (1202, '2023-11-05', 912, 1619, 326, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1203, '2023-11-05', 948, 1602, 324, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1204, '2023-11-05', 1055, 1603, 324, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (1205, '2023-11-05', 941, 1604, 324, NULL, '3.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1206, '2023-11-05', 1124, 1605, 324, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1207, '2023-11-05', 890, 1606, 324, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1208, '2023-11-05', 948, 1607, 324, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1209, '2023-11-06', 1074, 1626, 332, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1213, '2023-11-06', 990, 1630, 335, NULL, '1.0000', '6300.0000', '6300.0000', '6300.0000', '6300.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 (1214, '2023-11-06', 918, 1620, 331, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1215, '2023-11-06', 865, 1621, 331, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1216, '2023-11-06', 860, 1622, 331, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1217, '2023-11-06', 942, 1623, 331, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1218, '2023-11-06', 1081, 1624, 331, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1219, '2023-11-06', 1082, 1625, 331, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1223, '2023-11-06', 1072, 1634, 338, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1224, '2023-11-06', 892, 1635, 339, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1225, '2023-11-06', 860, 1636, 339, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1226, '2023-11-06', 917, 1637, 339, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1227, '2023-11-06', 909, 1638, 339, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1228, '2023-11-06', 858, 1639, 339, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1229, '2023-11-06', 1127, 1640, 339, NULL, '2.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (1230, '2023-11-06', 1130, 1641, 339, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1231, '2023-11-06', 866, 1642, 339, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (1232, '2023-11-06', 948, 1643, 339, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1233, '2023-11-06', 1111, 1644, 339, NULL, '11.0000', '500.0000', '500.0000', '500.0000', '500.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 (1234, '2023-11-06', 860, 1655, 341, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1235, '2023-11-06', 949, 1656, 341, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1236, '2023-11-06', 943, 1657, 341, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1237, '2023-11-06', 1051, 1658, 341, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1238, '2023-11-07', 856, 1667, 344, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1239, '2023-11-07', 956, 1668, 344, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (1240, '2023-11-07', 932, 1669, 344, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1241, '2023-11-07', 987, 1670, 344, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (1242, '2023-11-07', 1059, 1671, 344, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1243, '2023-11-07', 863, 1672, 345, NULL, '4.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1244, '2023-11-07', 867, 1673, 345, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1245, '2023-11-07', 929, 1674, 345, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1246, '2023-11-07', 915, 1675, 345, NULL, '3.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1247, '2023-11-07', 1111, 1676, 345, NULL, '9.0000', '500.0000', '500.0000', '500.0000', '500.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 (1248, '2023-11-07', 950, 1677, 346, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1249, '2023-11-07', 938, 1678, 346, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1250, '2023-11-07', 936, 1679, 346, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1251, '2023-11-07', 934, 1680, 346, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1252, '2023-11-07', 866, 1681, 346, NULL, '1.0000', '2000.0000', '2000.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 (1253, '2023-11-07', 1111, 1682, 346, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (1254, '2023-11-07', 858, 1686, 348, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1255, '2023-11-07', 1111, 1687, 348, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1256, '2023-11-07', 1086, 1700, 351, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1257, '2023-11-07', 885, 1701, 351, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1258, '2023-11-07', 1082, 1702, 351, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1259, '2023-11-07', 1059, 1703, 351, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1260, '2023-11-07', 1086, 1704, 352, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1261, '2023-11-07', 1088, 1705, 352, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1262, '2023-11-07', 1059, 1706, 352, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1263, '2023-11-07', 856, 1707, 352, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1264, '2023-11-07', 856, 1708, 353, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1265, '2023-11-07', 884, 1709, 353, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1266, '2023-11-07', 1115, 1710, 353, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1267, '2023-11-07', 1090, 1711, 353, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1268, '2023-11-07', 1061, 1714, 355, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1269, '2023-11-07', 1062, 1715, 355, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1270, '2023-11-07', 1061, 1741, 358, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1271, '2023-11-07', 866, 1742, 358, NULL, '1.0000', '2000.0000', '2000.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 (1272, '2023-11-07', 907, 1743, 358, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1273, '2023-11-07', 943, 1744, 358, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1274, '2023-11-07', 1061, 1745, 358, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1275, '2023-11-07', 856, 1752, 360, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1276, '2023-11-07', 1089, 1753, 360, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1277, '2023-11-07', 1071, 1754, 360, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1278, '2023-11-07', 1059, 1755, 360, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1279, '2023-11-07', 1064, 1756, 360, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1280, '2023-11-07', 876, 1757, 360, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1281, '2023-11-07', 918, 1796, 362, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1282, '2023-11-07', 1059, 1797, 362, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1283, '2023-11-07', 1042, 1798, 362, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1284, '2023-11-07', 905, 1810, 363, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1285, '2023-11-07', 949, 1811, 363, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1286, '2023-11-07', 930, 1812, 363, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1287, '2023-11-07', 937, 1813, 363, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1288, '2023-11-07', 866, 1814, 363, NULL, '4.0000', '2000.0000', '2000.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 (1289, '2023-11-07', 859, 1815, 363, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1290, '2023-11-07', 867, 1816, 363, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1291, '2023-11-07', 1047, 1817, 363, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (1292, '2023-11-07', 1086, 1818, 363, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1293, '2023-11-07', 1059, 1819, 363, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (1294, '2023-11-07', 1055, 1820, 363, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1317, '2023-11-07', 956, 1866, 364, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (1318, '2023-11-07', 1086, 1867, 364, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1319, '2023-11-07', 926, 1868, 364, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1320, '2023-11-07', 953, 1869, 364, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (1321, '2023-11-07', 868, 1870, 364, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1322, '2023-11-07', 1088, 1871, 364, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1323, '2023-11-07', 1047, 1872, 364, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (1324, '2023-11-07', 1090, 1873, 364, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1325, '2023-11-07', 1047, 1874, 364, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (1326, '2023-11-07', 860, 1875, 364, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1327, '2023-11-07', 1059, 1876, 364, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1328, '2023-11-08', 956, 1877, 365, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (1329, '2023-11-08', 880, 1878, 365, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1330, '2023-11-08', 858, 1879, 365, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1331, '2023-11-08', 936, 1880, 365, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1332, '2023-11-08', 1080, 1881, 365, NULL, '3.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1333, '2023-11-08', 1059, 1882, 365, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1334, '2023-11-08', 1049, 1883, 365, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (1335, '2023-11-08', 1112, 1884, 366, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1336, '2023-11-08', 859, 1885, 367, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1337, '2023-11-08', 917, 1886, 367, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1338, '2023-11-08', 1087, 1887, 367, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1339, '2023-11-08', 1111, 1888, 367, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (1340, '2023-11-08', 1085, 1889, 367, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1341, '2023-11-08', 872, 1890, 368, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1342, '2023-11-08', 863, 1891, 368, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1343, '2023-11-08', 1094, 1892, 368, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1344, '2023-11-08', 1097, 1893, 368, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1345, '2023-11-08', 1059, 1894, 368, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1346, '2023-11-08', 863, 1895, 369, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1347, '2023-11-08', 1059, 1896, 369, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1348, '2023-11-08', 860, 1900, 371, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1349, '2023-11-08', 867, 1901, 371, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1350, '2023-11-08', 1059, 1902, 371, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1351, '2023-11-09', 858, 1973, 374, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1352, '2023-11-09', 893, 1974, 374, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1353, '2023-11-09', 932, 1975, 374, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1354, '2023-11-09', 914, 1976, 374, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1355, '2023-11-09', 919, 1977, 374, NULL, '4.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1356, '2023-11-09', 926, 1978, 374, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1357, '2023-11-09', 945, 1979, 374, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1358, '2023-11-09', 863, 1980, 374, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1359, '2023-11-09', 890, 1981, 374, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1360, '2023-11-09', 865, 1982, 374, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1361, '2023-11-09', 1067, 1983, 374, NULL, '2.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1362, '2023-11-09', 1059, 1984, 374, NULL, '8.0000', '500.0000', '500.0000', '500.0000', '500.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 (1363, '2023-11-09', 1064, 1985, 374, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1364, '2023-11-09', 1076, 1986, 374, NULL, '2.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (1365, '2023-11-09', 1094, 1987, 374, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1366, '2023-11-09', 1074, 1988, 374, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1367, '2023-11-09', 1093, 1989, 374, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (1368, '2023-11-09', 1051, 1990, 374, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1369, '2023-11-09', 1111, 1991, 374, NULL, '11.0000', '500.0000', '500.0000', '500.0000', '500.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 (1370, '2023-11-09', 952, 1992, 374, NULL, '2.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (1391, '2023-11-09', 1059, 2019, 376, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1392, '2023-11-09', 912, 2020, 376, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1393, '2023-11-09', 936, 2021, 376, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1394, '2023-11-09', 953, 2022, 376, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (1395, '2023-11-09', 926, 2023, 376, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1396, '2023-11-09', 1086, 2024, 376, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1397, '2023-11-09', 865, 2025, 376, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1398, '2023-11-09', 1111, 2026, 376, NULL, '5.0000', '500.0000', '500.0000', '500.0000', '500.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 (1399, '2023-11-09', 1086, 2086, 380, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1400, '2023-11-09', 915, 2087, 380, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1401, '2023-11-09', 1115, 2088, 381, NULL, '4.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1402, '2023-11-09', 933, 2089, 381, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1403, '2023-11-09', 866, 2090, 381, NULL, '3.0000', '2000.0000', '2000.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 (1404, '2023-11-09', 893, 2091, 381, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1405, '2023-11-09', 907, 2092, 381, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1406, '2023-11-09', 1059, 2093, 381, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1407, '2023-11-09', 1115, 2094, 382, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1408, '2023-11-09', 856, 2095, 383, NULL, '2.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1409, '2023-11-09', 936, 2096, 383, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1410, '2023-11-09', 1126, 2097, 383, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1411, '2023-11-09', 1059, 2098, 383, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1412, '2023-11-09', 860, 2104, 384, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1413, '2023-11-09', 926, 2105, 384, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1414, '2023-11-09', 1029, 2106, 384, NULL, '7.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1415, '2023-11-09', 1035, 2107, 384, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1416, '2023-11-09', 1059, 2108, 384, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1419, '2023-11-09', 1029, 2113, 387, NULL, '4.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1420, '2023-11-09', 1059, 2114, 387, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1421, '2023-11-09', 1096, 2115, 387, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1422, '2023-11-09', 1010, 2116, 388, NULL, '1.0000', '85000.0000', '85000.0000', '85000.0000', '85000.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 (1423, '2023-11-09', 1064, 2204, 390, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1424, '2023-11-09', 1060, 2205, 390, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1425, '2023-11-09', 1059, 2206, 390, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (1426, '2023-11-09', 926, 2207, 390, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1427, '2023-11-09', 1086, 2208, 390, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1428, '2023-11-09', 867, 2209, 390, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1429, '2023-11-09', 868, 2210, 390, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1430, '2023-11-09', 877, 2211, 390, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1431, '2023-11-09', 865, 2212, 390, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1432, '2023-11-09', 901, 2213, 390, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1433, '2023-11-09', 937, 2223, 392, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1434, '2023-11-09', 859, 2224, 392, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1435, '2023-11-09', 867, 2225, 392, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1436, '2023-11-09', 1037, 2226, 392, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1437, '2023-11-09', 1059, 2227, 392, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1438, '2023-11-10', 954, 2231, 394, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1439, '2023-11-10', 1059, 2232, 394, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1440, '2023-11-10', 1089, 2233, 394, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1441, '2023-11-10', 1111, 2234, 394, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1442, '2023-11-10', 953, 2313, 398, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (1443, '2023-11-10', 926, 2314, 398, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1444, '2023-11-10', 1097, 2315, 399, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1445, '2023-11-10', 950, 2316, 399, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1459, '2023-11-10', 970, 2360, 403, NULL, '1.0000', '10000.0000', '10000.0000', '1800.0000', '1800.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 (1460, '2023-11-10', 941, 2361, 403, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1461, '2023-11-10', 1097, 2362, 403, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1462, '2023-11-10', 1086, 2363, 403, NULL, '3.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1463, '2023-11-10', 918, 2364, 403, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1464, '2023-11-10', 857, 2365, 403, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1465, '2023-11-10', 865, 2366, 403, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1466, '2023-11-10', 953, 2367, 403, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (1467, '2023-11-10', 926, 2368, 403, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1468, '2023-11-10', 911, 2369, 403, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1469, '2023-11-10', 1059, 2370, 403, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (1470, '2023-11-10', 1094, 2371, 403, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1471, '2023-11-10', 970, 2372, 404, NULL, '1.0000', '10000.0000', '10000.0000', '1800.0000', '1800.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 (1472, '2023-11-10', 908, 2376, 405, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1473, '2023-11-10', 953, 2377, 405, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (1474, '2023-11-10', 887, 2378, 405, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1475, '2023-11-10', 858, 2379, 405, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1476, '2023-11-10', 1111, 2380, 405, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (1477, '2023-11-10', 952, 2381, 406, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (1478, '2023-11-10', 858, 2382, 406, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1479, '2023-11-10', 887, 2383, 406, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1480, '2023-11-10', 959, 2384, 406, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1481, '2023-11-10', 1111, 2385, 406, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (1482, '2023-11-10', 861, 2400, 409, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1483, '2023-11-10', 950, 2401, 409, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1484, '2023-11-10', 1059, 2402, 409, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1485, '2023-11-10', 861, 2407, 410, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1486, '2023-11-10', 1029, 2408, 410, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1487, '2023-11-10', 1059, 2409, 410, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1488, '2023-11-10', 868, 2456, 413, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1489, '2023-11-10', 941, 2457, 413, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1490, '2023-11-10', 1059, 2458, 413, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1491, '2023-11-10', 1086, 2459, 413, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1492, '2023-11-10', 950, 2460, 413, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1493, '2023-11-10', 1072, 2461, 413, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1494, '2023-11-10', 913, 2486, 414, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1495, '2023-11-10', 856, 2487, 414, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1496, '2023-11-10', 902, 2488, 414, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1497, '2023-11-10', 866, 2489, 414, NULL, '1.0000', '2000.0000', '2000.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 (1498, '2023-11-10', 933, 2490, 414, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1499, '2023-11-10', 868, 2491, 414, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1500, '2023-11-10', 1115, 2492, 414, NULL, '1.0000', '4500.0000', '4500.0000', '5500.0000', '5500.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 (1501, '2023-11-10', 1047, 2493, 414, NULL, '2.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (1502, '2023-11-10', 961, 2494, 414, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1503, '2023-11-10', 1059, 2495, 414, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1504, '2023-11-10', 902, 2510, 415, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1505, '2023-11-10', 856, 2511, 415, NULL, '2.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1506, '2023-11-10', 892, 2512, 415, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1507, '2023-11-10', 884, 2513, 415, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1508, '2023-11-10', 939, 2514, 415, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1509, '2023-11-10', 977, 2515, 415, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1510, '2023-11-10', 1079, 2516, 415, NULL, '3.0000', '2000.0000', '2000.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 (1511, '2023-11-10', 1047, 2517, 416, NULL, '1.0000', '1800.0000', '1800.0000', '4500.0000', '4500.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 (1512, '2023-11-10', 1086, 2518, 416, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1513, '2023-11-10', 890, 2519, 416, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1514, '2023-11-10', 865, 2520, 416, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1515, '2023-11-10', 1059, 2524, 419, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1516, '2023-11-10', 892, 2525, 420, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1517, '2023-11-10', 1034, 2526, 420, NULL, '2.0000', '1900.0000', '1900.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 (1518, '2023-11-10', 1048, 2530, 422, NULL, '3.0000', '1800.0000', '1800.0000', '3000.0000', '3000.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 (1519, '2023-11-10', 948, 2531, 422, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1520, '2023-11-10', 1111, 2532, 422, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1521, '2023-11-11', 865, 2578, 424, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1522, '2023-11-11', 921, 2579, 424, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1523, '2023-11-11', 892, 2580, 424, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1524, '2023-11-11', 941, 2581, 424, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1525, '2023-11-11', 949, 2582, 424, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1526, '2023-11-11', 1060, 2583, 424, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1527, '2023-11-11', 1074, 2584, 424, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1528, '2023-11-11', 943, 2585, 424, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1529, '2023-11-11', 1076, 2586, 424, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (1530, '2023-11-11', 1089, 2587, 424, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1531, '2023-11-11', 859, 2588, 424, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1532, '2023-11-11', 1059, 2589, 424, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1533, '2023-11-11', 918, 2629, 429, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1534, '2023-11-11', 866, 2630, 429, NULL, '1.0000', '2000.0000', '2000.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 (1535, '2023-11-11', 1111, 2631, 429, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1536, '2023-11-11', 1094, 2632, 430, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1537, '2023-11-11', 1094, 2633, 431, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1538, '2023-11-11', 1059, 2642, 432, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1539, '2023-11-11', 910, 2643, 432, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1540, '2023-11-11', 890, 2644, 432, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1541, '2023-11-11', 1074, 2730, 436, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1542, '2023-11-11', 1061, 2731, 436, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1543, '2023-11-11', 1089, 2732, 436, NULL, '4.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1544, '2023-11-11', 1059, 2733, 436, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (1545, '2023-11-11', 1090, 2734, 436, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1546, '2023-11-11', 949, 2735, 436, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1547, '2023-11-11', 946, 2736, 436, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1548, '2023-11-11', 856, 2737, 436, NULL, '3.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1549, '2023-11-11', 861, 2738, 436, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1550, '2023-11-11', 941, 2739, 436, NULL, '3.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1551, '2023-11-11', 926, 2740, 436, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1552, '2023-11-11', 953, 2741, 436, NULL, '2.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (1553, '2023-11-11', 1088, 2742, 436, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1554, '2023-11-11', 1035, 2743, 436, NULL, '7.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1555, '2023-11-11', 1072, 2744, 436, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1556, '2023-11-11', 1034, 2745, 436, NULL, '1.0000', '1900.0000', '1900.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 (1557, '2023-11-11', 1133, 2746, 436, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1558, '2023-11-11', 936, 2747, 437, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1559, '2023-11-11', 865, 2748, 437, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1560, '2023-11-11', 1059, 2749, 437, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1561, '2023-11-11', 953, 2750, 438, NULL, '1.0000', '13000.0000', '13000.0000', '20000.0000', '20000.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 (1562, '2023-11-11', 932, 2751, 438, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1563, '2023-11-11', 856, 2752, 438, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1564, '2023-11-11', 1066, 2753, 438, NULL, '2.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1565, '2023-11-11', 1059, 2754, 438, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1566, '2023-11-11', 1003, 2755, 438, NULL, '1.0000', '8000.0000', '8000.0000', '8000.0000', '8000.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 (1567, '2023-11-11', 979, 2756, 439, NULL, '1.0000', '25500.0000', '25500.0000', '25500.0000', '25500.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 (1568, '2023-11-11', 1051, 2757, 439, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1569, '2023-11-11', 1053, 2758, 439, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1570, '2023-11-11', 1053, 2760, 441, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1571, '2023-11-11', 1088, 2761, 442, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1572, '2023-11-11', 1035, 2776, 447, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1573, '2023-11-11', 1072, 2777, 448, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1574, '2023-11-11', 1096, 2778, 448, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1575, '2023-11-11', 1035, 2779, 448, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1576, '2023-11-11', 1059, 2788, 452, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1577, '2023-11-11', 1035, 2789, 452, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1578, '2023-11-11', 1058, 2795, 454, NULL, '1.0000', '2000.0000', '2000.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 (1579, '2023-11-11', 1058, 2796, 455, NULL, '1.0000', '2000.0000', '2000.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 (1580, '2023-11-11', 859, 2797, 456, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1581, '2023-11-11', 1059, 2798, 456, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1582, '2023-11-11', 1071, 2799, 457, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1583, '2023-11-11', 1060, 2800, 457, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1584, '2023-11-11', 1072, 2801, 457, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1585, '2023-11-11', 1089, 2802, 457, NULL, '4.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1586, '2023-11-11', 957, 2806, 458, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (1587, '2023-11-11', 1126, 2807, 458, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1588, '2023-11-11', 1049, 2808, 458, NULL, '1.0000', '1800.0005', '1800.0005', '4500.0000', '4500.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 (1590, '2023-11-12', 1111, 2819, 461, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (1591, '2023-11-12', 932, 2820, 461, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1592, '2023-11-12', 861, 2821, 461, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1593, '2023-11-12', 914, 2822, 461, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1594, '2023-11-12', 867, 2823, 461, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1595, '2023-11-12', 910, 2836, 463, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1596, '2023-11-12', 905, 2837, 463, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1597, '2023-11-12', 1111, 2838, 463, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1598, '2023-11-12', 867, 2846, 464, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1599, '2023-11-12', 866, 2847, 464, NULL, '1.0000', '2000.0000', '2000.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 (1600, '2023-11-12', 936, 2848, 464, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1601, '2023-11-12', 1061, 2849, 464, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1602, '2023-11-12', 1059, 2850, 464, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1603, '2023-11-12', 1054, 2851, 464, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1604, '2023-11-12', 1086, 2852, 464, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1605, '2023-11-12', 935, 2853, 465, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1606, '2023-11-12', 962, 2854, 465, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1607, '2023-11-12', 1111, 2855, 465, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1608, '2023-11-12', 1088, 2856, 466, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1609, '2023-11-12', 1087, 2857, 466, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1610, '2023-11-12', 1111, 2858, 466, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (1611, '2023-11-12', 1080, 2859, 466, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1613, '2023-11-12', 1089, 2874, 473, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1614, '2023-11-12', 1059, 2875, 473, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1615, '2023-11-12', 935, 2885, 475, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1616, '2023-11-12', 960, 2886, 475, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1617, '2023-11-12', 946, 2890, 476, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1618, '2023-11-12', 950, 2891, 476, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1619, '2023-11-12', 860, 2892, 476, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1620, '2023-11-12', 919, 2893, 476, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1621, '2023-11-12', 867, 2894, 476, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1622, '2023-11-12', 893, 2895, 476, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1623, '2023-11-12', 1059, 2896, 476, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1624, '2023-11-12', 1080, 2897, 476, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1625, '2023-11-12', 866, 2901, 478, NULL, '1.0000', '2000.0000', '2000.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 (1626, '2023-11-12', 941, 2904, 480, NULL, '1.0000', '6900.0000', '6900.0000', '80000.0000', '80000.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 (1627, '2023-11-12', 1083, 2905, 480, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1628, '2023-11-12', 1087, 2906, 480, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1629, '2023-11-12', 856, 2924, 482, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1630, '2023-11-12', 1086, 2925, 482, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1631, '2023-11-12', 1059, 2926, 482, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1632, '2023-11-12', 1089, 2927, 482, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1633, '2023-11-12', 1094, 2928, 482, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1634, '2023-11-12', 859, 2929, 483, NULL, '1.0000', '7900.0000', '7900.0000', '50000.0000', '50000.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 (1635, '2023-11-12', 891, 2930, 483, NULL, '1.0000', '9900.0000', '9900.0000', '50000.0000', '50000.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 (1636, '2023-11-12', 1089, 2931, 484, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1637, '2023-11-12', 1040, 2932, 484, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1638, '2023-11-12', 1130, 2933, 485, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1639, '2023-11-12', 1059, 2934, 485, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1640, '2023-11-12', 941, 2935, 485, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1641, '2023-11-13', 882, 2936, 486, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1642, '2023-11-13', 858, 2937, 486, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1643, '2023-11-13', 1111, 2938, 486, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1648, '2023-11-13', 1059, 2955, 490, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1649, '2023-11-13', 1086, 2956, 490, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1650, '2023-11-13', 1085, 2957, 490, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1651, '2023-11-13', 867, 2958, 490, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1652, '2023-11-13', 956, 2972, 491, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (1653, '2023-11-13', 1112, 2973, 491, NULL, '3.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1654, '2023-11-13', 918, 2980, 492, NULL, '1.0000', '9900.0000', '9900.0000', '10000.0000', '10000.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 (1655, '2023-11-13', 865, 2981, 492, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1656, '2023-11-13', 1126, 2982, 492, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1657, '2023-11-13', 1059, 2983, 492, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1658, '2023-11-13', 1047, 2984, 492, 362, '1.0000', '4744.2211', '4744.2211', '4500.0000', '4500.0000', '17.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1659, '2023-11-13', 1074, 2985, 492, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1660, '2023-11-13', 1090, 2988, 494, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1661, '2023-11-13', 1059, 2989, 494, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1662, '2023-11-13', 868, 3003, 496, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1663, '2023-11-13', 866, 3004, 496, NULL, '1.0000', '2000.0000', '2000.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 (1664, '2023-11-13', 957, 3005, 496, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (1665, '2023-11-13', 943, 3006, 496, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1666, '2023-11-13', 946, 3007, 496, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1667, '2023-11-13', 1097, 3008, 496, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1668, '2023-11-13', 1094, 3009, 496, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1669, '2023-11-13', 1111, 3078, 500, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1670, '2023-11-13', 1090, 3079, 500, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1671, '2023-11-13', 1089, 3080, 500, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1672, '2023-11-13', 1059, 3081, 500, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1673, '2023-11-13', 949, 3082, 500, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1674, '2023-11-13', 918, 3083, 500, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1675, '2023-11-13', 866, 3084, 500, NULL, '1.0000', '2000.0000', '2000.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 (1676, '2023-11-13', 856, 3085, 500, NULL, '2.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1677, '2023-11-13', 957, 3086, 500, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (1678, '2023-11-13', 868, 3087, 501, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1679, '2023-11-13', 884, 3088, 501, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1680, '2023-11-13', 955, 3089, 501, NULL, '1.0000', '10900.0000', '10900.0000', '10900.0000', '10900.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 (1681, '2023-11-13', 1049, 3090, 501, 364, '1.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '13.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1682, '2023-11-13', 1059, 3091, 501, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1683, '2023-11-13', 954, 3092, 501, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1684, '2023-11-13', 863, 3093, 501, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1685, '2023-11-13', 1035, 3094, 501, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1686, '2023-11-13', 892, 3095, 502, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1687, '2023-11-13', 935, 3096, 502, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1688, '2023-11-13', 1083, 3097, 502, NULL, '1.0000', '3500.0000', '3500.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 (1689, '2023-11-13', 861, 3098, 502, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1690, '2023-11-13', 1086, 3099, 502, NULL, '1.0000', '3500.0000', '3500.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 (1691, '2023-11-13', 1059, 3101, 504, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1692, '2023-11-13', 1059, 3102, 505, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1693, '2023-11-13', 1059, 3103, 506, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1694, '2023-11-13', 945, 3104, 507, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1695, '2023-11-13', 956, 3105, 507, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (1696, '2023-11-13', 935, 3106, 507, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1697, '2023-11-13', 892, 3107, 507, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1698, '2023-11-13', 1047, 3108, 507, 362, '1.0000', '4744.2211', '4744.2211', '4500.0000', '4500.0000', '16.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1699, '2023-11-13', 920, 3122, 509, NULL, '1.0000', '10400.0000', '10400.0000', '10400.0000', '10400.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 (1700, '2023-11-13', 866, 3123, 509, NULL, '1.0000', '2000.0000', '2000.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 (1701, '2023-11-13', 868, 3124, 509, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1702, '2023-11-13', 1061, 3125, 509, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1703, '2023-11-13', 1060, 3126, 509, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1706, '2023-11-14', 892, 3146, 515, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1707, '2023-11-14', 861, 3147, 515, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1708, '2023-11-14', 926, 3148, 515, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1709, '2023-11-14', 1086, 3149, 515, NULL, '1.0000', '3500.0000', '3500.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 (1710, '2023-11-14', 1081, 3150, 515, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (1711, '2023-11-14', 889, 3151, 515, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1712, '2023-11-14', 882, 3219, 518, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1713, '2023-11-14', 890, 3220, 518, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1714, '2023-11-14', 936, 3221, 518, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1715, '2023-11-14', 1088, 3222, 518, NULL, '3.0000', '3500.0000', '3500.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 (1717, '2023-11-14', 918, 3224, 520, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1718, '2023-11-14', 931, 3225, 520, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (1719, '2023-11-14', 914, 3226, 520, NULL, '1.0000', '8900.0000', '8900.0000', '15000.0000', '15000.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 (1720, '2023-11-14', 868, 3227, 520, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1721, '2023-11-14', 933, 3228, 520, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1722, '2023-11-14', 926, 3229, 520, NULL, '1.0000', '6900.0000', '6900.0000', '10000.0000', '10000.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 (1723, '2023-11-14', 945, 3230, 520, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1724, '2023-11-14', 865, 3231, 520, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1725, '2023-11-14', 866, 3232, 520, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (1726, '2023-11-14', 960, 3233, 520, NULL, '7.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1727, '2023-11-14', 1067, 3234, 520, NULL, '2.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1728, '2023-11-14', 1059, 3235, 520, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (1729, '2023-11-14', 933, 3236, 520, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1730, '2023-11-14', 1086, 3237, 520, NULL, '1.0000', '3500.0000', '3500.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 (1731, '2023-11-14', 1085, 3238, 520, NULL, '1.0000', '3500.0000', '3500.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 (1732, '2023-11-14', 1081, 3239, 520, NULL, '1.0000', '3500.0000', '3500.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 (1733, '2023-11-14', 861, 3240, 520, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1734, '2023-11-14', 892, 3241, 520, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1735, '2023-11-14', 1074, 3244, 522, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1736, '2023-11-14', 890, 3249, 523, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1737, '2023-11-14', 950, 3250, 523, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1738, '2023-11-14', 866, 3251, 523, NULL, '1.0000', '2000.0000', '2000.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 (1739, '2023-11-14', 1111, 3252, 523, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (1744, '2023-11-14', 953, 3257, 525, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (1745, '2023-11-14', 1111, 3258, 525, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1746, '2023-11-14', 1086, 3284, 528, NULL, '1.0000', '3500.0000', '3500.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 (1747, '2023-11-14', 936, 3285, 528, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1748, '2023-11-14', 932, 3286, 528, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1749, '2023-11-14', 1059, 3287, 528, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1750, '2023-11-14', 868, 3288, 528, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1751, '2023-11-14', 1115, 3289, 528, 365, '1.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '10.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1752, '2023-11-14', 1057, 3290, 529, NULL, '1.0000', '2000.0000', '2000.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 (1753, '2023-11-14', 1042, 3291, 529, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1754, '2023-11-14', 1061, 3292, 529, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1755, '2023-11-14', 950, 3293, 529, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1756, '2023-11-14', 1059, 3294, 529, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1757, '2023-11-14', 1094, 3316, 533, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1758, '2023-11-14', 936, 3317, 533, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1759, '2023-11-14', 918, 3318, 533, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1760, '2023-11-14', 856, 3319, 533, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1761, '2023-11-14', 1035, 3320, 533, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1762, '2023-11-14', 1059, 3321, 533, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1763, '2023-11-14', 1065, 3322, 534, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1764, '2023-11-14', 1136, 3323, 535, NULL, '1.0000', '2000.0000', '2000.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 (1765, '2023-11-14', 1042, 3324, 536, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1769, '2023-11-15', 1049, 3379, 540, 364, '5.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '8.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1770, '2023-11-15', 885, 3380, 540, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1771, '2023-11-15', 936, 3381, 540, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1772, '2023-11-15', 948, 3382, 540, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1773, '2023-11-15', 1035, 3383, 540, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1774, '2023-11-15', 1059, 3384, 540, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1775, '2023-11-15', 1049, 3386, 542, 364, '6.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '2.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1776, '2023-11-15', 1049, 3387, 543, 364, '2.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '0.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1777, '2023-11-15', 856, 3388, 544, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1778, '2023-11-15', 941, 3389, 544, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1779, '2023-11-15', 867, 3390, 544, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1780, '2023-11-15', 932, 3391, 544, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1781, '2023-11-15', 948, 3392, 544, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1782, '2023-11-15', 1059, 3393, 544, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (1783, '2023-11-15', 1080, 3394, 544, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (1784, '2023-11-15', 1088, 3395, 544, NULL, '1.0000', '3500.0000', '3500.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 (1785, '2023-11-15', 1049, 3397, 546, 357, '1.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '174.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1790, '2023-11-15', 994, 3428, 549, NULL, '1.0000', '16200.0000', '16200.0000', '16200.0000', '16200.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 (1791, '2023-11-15', 1057, 3429, 549, NULL, '1.0000', '2000.0000', '2000.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 (1792, '2023-11-15', 1036, 3430, 549, NULL, '2.0000', '2700.0000', '2700.0000', '2700.0000', '2700.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 (1793, '2023-11-15', 932, 3431, 549, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1794, '2023-11-15', 954, 3432, 549, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1795, '2023-11-15', 856, 3433, 549, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1796, '2023-11-15', 858, 3434, 549, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1797, '2023-11-15', 1059, 3435, 549, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (1798, '2023-11-15', 1092, 3436, 549, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (1799, '2023-11-15', 880, 3437, 548, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1800, '2023-11-15', 859, 3438, 548, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1801, '2023-11-15', 1111, 3439, 548, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (1802, '2023-11-15', 864, 3440, 548, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1803, '2023-11-15', 1047, 3441, 550, 362, '1.0000', '4744.2211', '4744.2211', '4500.0000', '4500.0000', '15.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1809, '2023-11-15', 885, 3489, 554, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1810, '2023-11-15', 946, 3490, 554, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1811, '2023-11-15', 949, 3491, 554, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1812, '2023-11-15', 1072, 3492, 554, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1813, '2023-11-15', 1070, 3493, 554, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1814, '2023-11-15', 936, 3494, 554, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1815, '2023-11-15', 1066, 3495, 554, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1816, '2023-11-15', 953, 3501, 555, NULL, '1.0000', '13000.0000', '13000.0000', '20000.0000', '20000.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 (1817, '2023-11-15', 919, 3502, 555, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1818, '2023-11-15', 895, 3503, 555, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1819, '2023-11-15', 908, 3504, 555, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1820, '2023-11-15', 865, 3505, 555, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1821, '2023-11-15', 1054, 3506, 555, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1822, '2023-11-15', 1082, 3507, 556, NULL, '1.0000', '3500.0000', '3500.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 (1823, '2023-11-15', 932, 3508, 556, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1824, '2023-11-15', 957, 3509, 556, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (1825, '2023-11-15', 1059, 3510, 556, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1826, '2023-11-15', 1035, 3511, 556, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1827, '2023-11-15', 933, 3519, 558, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1828, '2023-11-15', 947, 3520, 558, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1829, '2023-11-15', 1035, 3521, 558, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1830, '2023-11-15', 870, 3522, 558, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1831, '2023-11-15', 858, 3523, 559, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1832, '2023-11-15', 1111, 3524, 559, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1834, '2023-11-16', 949, 3527, 562, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1835, '2023-11-16', 858, 3528, 563, NULL, '3.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1836, '2023-11-16', 1041, 3531, 565, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1837, '2023-11-16', 1059, 3532, 565, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1838, '2023-11-16', 933, 3558, 568, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1839, '2023-11-16', 1088, 3559, 568, NULL, '1.0000', '3500.0000', '3500.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 (1840, '2023-11-16', 857, 3560, 568, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1841, '2023-11-16', 1075, 3561, 568, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1842, '2023-11-16', 1059, 3562, 568, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1843, '2023-11-16', 941, 3563, 568, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1844, '2023-11-16', 1111, 3564, 568, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (1845, '2023-11-16', 856, 3565, 569, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1846, '2023-11-16', 956, 3566, 569, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (1847, '2023-11-16', 1036, 3567, 569, NULL, '1.0000', '2700.0000', '2700.0000', '2700.0000', '2700.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 (1848, '2023-11-16', 1090, 3568, 569, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1849, '2023-11-16', 1058, 3571, 571, NULL, '1.0000', '2000.0000', '2000.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 (1850, '2023-11-16', 1075, 3572, 571, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1851, '2023-11-16', 919, 3573, 572, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1852, '2023-11-16', 865, 3574, 572, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1853, '2023-11-16', 919, 3575, 573, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1854, '2023-11-16', 865, 3576, 573, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1855, '2023-11-16', 867, 3577, 573, NULL, '1.0000', '8900.0000', '8900.0000', '7900.0000', '7900.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 (1856, '2023-11-17', 922, 3607, 576, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1857, '2023-11-17', 926, 3608, 576, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1858, '2023-11-17', 1059, 3609, 576, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1859, '2023-11-17', 860, 3610, 576, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1860, '2023-11-17', 1047, 3611, 576, 362, '1.0000', '4744.2211', '4744.2211', '4500.0000', '4500.0000', '14.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1861, '2023-11-17', 1138, 3612, 576, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1862, '2023-11-17', 918, 3650, 579, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1863, '2023-11-17', 866, 3651, 579, NULL, '1.0000', '2000.0000', '2000.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 (1864, '2023-11-17', 859, 3652, 579, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1865, '2023-11-17', 1059, 3653, 579, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1866, '2023-11-17', 1023, 3654, 579, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1867, '2023-11-17', 942, 3655, 579, NULL, '1.0000', '8900.0000', '8900.0000', '7900.0000', '7900.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 (1868, '2023-11-17', 932, 3688, 580, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1869, '2023-11-17', 1072, 3689, 580, NULL, '2.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1870, '2023-11-17', 856, 3690, 580, NULL, '3.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1871, '2023-11-17', 1093, 3691, 580, NULL, '1.0000', '2000.0000', '2000.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 (1872, '2023-11-17', 885, 3692, 580, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1873, '2023-11-17', 1074, 3693, 580, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1874, '2023-11-17', 1051, 3694, 580, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1875, '2023-11-17', 912, 3695, 580, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1876, '2023-11-17', 1031, 3696, 580, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1877, '2023-11-17', 1059, 3697, 580, NULL, '5.0000', '500.0000', '500.0000', '500.0000', '500.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 (1878, '2023-11-17', 1139, 3698, 580, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1879, '2023-11-17', 1111, 3699, 580, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (1880, '2023-11-17', 946, 3700, 581, NULL, '1.0000', '8900.0000', '8900.0000', '9900.0000', '9900.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 (1881, '2023-11-17', 939, 3701, 581, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1882, '2023-11-17', 933, 3702, 581, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1883, '2023-11-17', 914, 3703, 581, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1884, '2023-11-17', 882, 3704, 581, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1885, '2023-11-17', 1087, 3705, 581, NULL, '1.0000', '3500.0000', '3500.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 (1886, '2023-11-17', 1059, 3706, 581, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (1887, '2023-11-17', 865, 3707, 581, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1889, '2023-11-17', 1057, 3712, 584, NULL, '1.0000', '2000.0000', '2000.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 (1890, '2023-11-17', 867, 3713, 585, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1891, '2023-11-17', 870, 3714, 585, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1892, '2023-11-17', 884, 3716, 587, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1893, '2023-11-17', 942, 3717, 587, NULL, '1.0000', '8900.0000', '8900.0000', '7900.0000', '7900.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 (1894, '2023-11-17', 1053, 3718, 587, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1895, '2023-11-17', 956, 3721, 588, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (1896, '2023-11-17', 1126, 3722, 588, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1897, '2023-11-17', 956, 3723, 588, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (1898, '2023-11-17', 858, 3724, 588, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1899, '2023-11-17', 1042, 3725, 588, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1900, '2023-11-17', 1059, 3726, 588, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (1901, '2023-11-17', 1087, 3727, 588, NULL, '1.0000', '3500.0000', '3500.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 (1902, '2023-11-17', 858, 3738, 591, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1903, '2023-11-17', 884, 3739, 591, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1904, '2023-11-17', 1111, 3740, 591, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1905, '2023-11-17', 1074, 3741, 591, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1906, '2023-11-17', 892, 3742, 592, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1907, '2023-11-17', 1065, 3743, 592, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1908, '2023-11-17', 1066, 3744, 592, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (1909, '2023-11-17', 1059, 3745, 592, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1912, '2023-11-18', 866, 3809, 598, NULL, '3.0000', '2000.0000', '2000.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 (1913, '2023-11-18', 893, 3810, 598, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1914, '2023-11-18', 935, 3811, 598, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1915, '2023-11-18', 1051, 3812, 598, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1916, '2023-11-18', 1055, 3813, 598, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1917, '2023-11-18', 1052, 3814, 598, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1918, '2023-11-18', 1059, 3815, 598, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1919, '2023-11-18', 906, 3816, 599, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1920, '2023-11-18', 860, 3817, 599, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1921, '2023-11-18', 866, 3818, 600, NULL, '1.0000', '2000.0000', '2000.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 (1922, '2023-11-18', 867, 3819, 600, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1923, '2023-11-18', 936, 3820, 600, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1924, '2023-11-18', 1059, 3821, 600, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (1925, '2023-11-18', 1086, 3822, 600, NULL, '1.0000', '3500.0000', '3500.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 (1926, '2023-11-18', 1039, 3827, 602, NULL, '2.0000', '2800.0000', '2800.0000', '2800.0000', '2800.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 (1927, '2023-11-18', 1040, 3828, 602, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1928, '2023-11-18', 867, 3835, 605, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1929, '2023-11-18', 859, 3836, 605, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1930, '2023-11-18', 1111, 3837, 605, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1931, '2023-11-18', 1046, 3838, 606, NULL, '1.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (1932, '2023-11-18', 941, 3839, 606, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1933, '2023-11-18', 1089, 3867, 609, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1934, '2023-11-18', 1090, 3868, 609, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1935, '2023-11-18', 1074, 3869, 609, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1936, '2023-11-18', 1079, 3870, 609, NULL, '1.0000', '2000.0000', '2000.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 (1937, '2023-11-18', 858, 3871, 609, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1938, '2023-11-18', 860, 3872, 609, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1939, '2023-11-18', 948, 3873, 609, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1940, '2023-11-18', 885, 3874, 609, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1941, '2023-11-18', 1059, 3875, 609, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1942, '2023-11-18', 1111, 3876, 609, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1943, '2023-11-18', 866, 3877, 610, NULL, '4.0000', '2000.0000', '2000.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 (1944, '2023-11-18', 909, 3878, 610, NULL, '1.0000', '9900.0000', '9900.0000', '7900.0000', '7900.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 (1945, '2023-11-18', 932, 3879, 610, NULL, '1.0000', '7900.0000', '7900.0000', '3000.0000', '3000.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 (1946, '2023-11-18', 959, 3880, 610, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (1947, '2023-11-18', 915, 3881, 610, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1948, '2023-11-18', 1059, 3899, 613, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1949, '2023-11-18', 1064, 3900, 613, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1950, '2023-11-18', 865, 3902, 615, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1951, '2023-11-18', 908, 3903, 615, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1952, '2023-11-18', 936, 3904, 615, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1953, '2023-11-18', 990, 3905, 615, NULL, '1.0000', '6300.0000', '6300.0000', '6500.0000', '6500.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 (1954, '2023-11-18', 950, 3906, 615, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1955, '2023-11-18', 1111, 3907, 615, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1956, '2023-11-18', 1054, 3910, 617, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1957, '2023-11-18', 1115, 3911, 618, 365, '2.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '8.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1958, '2023-11-18', 1054, 3912, 618, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1959, '2023-11-18', 1059, 3913, 618, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (1960, '2023-11-18', 1034, 3914, 618, NULL, '1.0000', '1900.0000', '1900.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 (1961, '2023-11-18', 951, 3915, 618, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1962, '2023-11-18', 868, 3916, 618, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1963, '2023-11-18', 949, 3917, 618, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1964, '2023-11-18', 1092, 3925, 620, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (1965, '2023-11-18', 1090, 3926, 620, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1966, '2023-11-18', 1035, 3927, 620, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1967, '2023-11-18', 948, 3928, 620, NULL, '3.0000', '6900.0000', '6900.0000', '5900.0000', '5900.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 (1968, '2023-11-18', 1059, 3929, 620, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1969, '2023-11-19', 935, 3930, 621, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1970, '2023-11-19', 1086, 3931, 621, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (1971, '2023-11-19', 1090, 3978, 624, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1972, '2023-11-19', 1059, 3979, 624, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (1973, '2023-11-19', 918, 3980, 624, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1974, '2023-11-19', 857, 3981, 624, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1975, '2023-11-19', 1089, 3982, 624, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1976, '2023-11-19', 865, 3983, 624, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (1977, '2023-11-19', 856, 3984, 624, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1978, '2023-11-19', 953, 4016, 626, NULL, '1.0000', '13000.0000', '13000.0000', '20000.0000', '20000.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 (1979, '2023-11-19', 892, 4017, 626, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1980, '2023-11-19', 1086, 4018, 626, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (1981, '2023-11-19', 861, 4019, 626, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (1982, '2023-11-19', 936, 4020, 626, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1983, '2023-11-19', 926, 4021, 626, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1984, '2023-11-19', 856, 4022, 626, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (1985, '2023-11-19', 943, 4023, 626, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1986, '2023-11-19', 1059, 4024, 626, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1987, '2023-11-19', 953, 4025, 627, NULL, '1.0000', '13000.0000', '13000.0000', '20000.0000', '20000.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 (1988, '2023-11-19', 869, 4026, 627, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1989, '2023-11-19', 936, 4027, 627, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1990, '2023-11-19', 857, 4028, 627, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (1991, '2023-11-19', 948, 4029, 627, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (1992, '2023-11-19', 1091, 4030, 627, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1993, '2023-11-19', 1090, 4031, 627, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (1994, '2023-11-19', 1059, 4032, 627, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (1995, '2023-11-19', 1035, 4082, 630, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (1998, '2023-11-19', 932, 4085, 632, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (1999, '2023-11-19', 937, 4086, 632, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2000, '2023-11-19', 912, 4110, 635, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2001, '2023-11-19', 865, 4111, 635, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2002, '2023-11-19', 917, 4112, 635, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2003, '2023-11-19', 1059, 4113, 635, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2004, '2023-11-19', 1078, 4114, 635, NULL, '1.0000', '2000.0000', '2000.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 (2005, '2023-11-19', 864, 4140, 637, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2006, '2023-11-19', 911, 4141, 637, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2007, '2023-11-19', 913, 4142, 637, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2008, '2023-11-19', 912, 4143, 637, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2009, '2023-11-19', 892, 4144, 637, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2010, '2023-11-19', 856, 4145, 637, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2011, '2023-11-19', 949, 4146, 637, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2012, '2023-11-19', 866, 4147, 637, NULL, '1.0000', '2000.0000', '2000.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 (2013, '2023-11-19', 1075, 4148, 637, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2014, '2023-11-19', 956, 4149, 637, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (2015, '2023-11-19', 1093, 4150, 637, NULL, '1.0000', '2000.0000', '2000.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 (2016, '2023-11-19', 1091, 4151, 637, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2017, '2023-11-19', 1089, 4152, 637, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2018, '2023-11-19', 864, 4154, 639, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2019, '2023-11-19', 911, 4155, 639, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2020, '2023-11-19', 931, 4156, 639, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (2021, '2023-11-19', 1076, 4157, 639, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (2022, '2023-11-19', 1074, 4158, 639, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2023, '2023-11-19', 859, 4169, 641, NULL, '3.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2024, '2023-11-19', 913, 4170, 641, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2025, '2023-11-19', 948, 4171, 641, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2029, '2023-11-19', 1040, 4187, 643, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2030, '2023-11-19', 948, 4188, 643, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2031, '2023-11-19', 1038, 4189, 643, NULL, '2.0000', '1550.0000', '1550.0000', '1550.0000', '1550.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 (2032, '2023-11-19', 1064, 4190, 644, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2033, '2023-11-19', 1035, 4191, 644, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2034, '2023-11-19', 945, 4192, 644, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2035, '2023-11-19', 867, 4193, 644, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2036, '2023-11-19', 1059, 4194, 644, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2037, '2023-11-19', 1049, 4206, 645, 357, '3.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '171.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2038, '2023-11-19', 859, 4207, 645, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2039, '2023-11-19', 948, 4208, 645, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2040, '2023-11-19', 1094, 4209, 645, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2041, '2023-11-19', 1059, 4210, 645, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2042, '2023-11-19', 1036, 4211, 645, NULL, '1.0000', '2700.0000', '2700.0000', '2700.0000', '2700.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 (2043, '2023-11-19', 957, 4212, 645, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (2044, '2023-11-20', 858, 4250, 649, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2045, '2023-11-20', 1076, 4251, 649, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (2046, '2023-11-20', 1035, 4252, 649, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2047, '2023-11-20', 1059, 4253, 649, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2048, '2023-11-20', 1058, 4254, 649, NULL, '1.0000', '2000.0000', '2000.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 (2062, '2023-11-20', 912, 4280, 653, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2063, '2023-11-20', 865, 4281, 653, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2064, '2023-11-20', 931, 4282, 653, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (2065, '2023-11-20', 1086, 4283, 653, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (2066, '2023-11-20', 1080, 4284, 653, NULL, '1.0000', '3500.0000', '3500.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 (2067, '2023-11-20', 918, 4285, 653, NULL, '1.0000', '9900.0000', '9900.0000', '7900.0000', '7900.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 (2068, '2023-11-20', 1059, 4286, 653, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (2069, '2023-11-20', 1111, 4287, 653, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2070, '2023-11-20', 860, 4288, 654, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2071, '2023-11-20', 915, 4289, 654, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2072, '2023-11-20', 1096, 4290, 654, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2073, '2023-11-20', 1089, 4291, 654, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2074, '2023-11-20', 945, 4292, 654, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2075, '2023-11-20', 1059, 4293, 654, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2076, '2023-11-20', 945, 4294, 655, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2077, '2023-11-20', 953, 4295, 655, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (2078, '2023-11-20', 888, 4296, 655, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2079, '2023-11-20', 872, 4297, 655, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2080, '2023-11-20', 1065, 4311, 660, NULL, '2.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2081, '2023-11-20', 860, 4323, 661, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2082, '2023-11-20', 948, 4324, 661, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2083, '2023-11-20', 865, 4325, 661, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2084, '2023-11-20', 918, 4326, 661, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2085, '2023-11-20', 1059, 4327, 661, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2086, '2023-11-20', 863, 4395, 665, NULL, '3.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2087, '2023-11-20', 932, 4396, 665, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2088, '2023-11-20', 884, 4397, 665, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2089, '2023-11-20', 1059, 4398, 665, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2090, '2023-11-20', 1089, 4399, 665, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2091, '2023-11-20', 1115, 4400, 665, 365, '1.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '7.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2092, '2023-11-20', 872, 4437, 666, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2093, '2023-11-20', 946, 4438, 666, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2094, '2023-11-20', 932, 4439, 666, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2095, '2023-11-20', 933, 4440, 666, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2096, '2023-11-20', 864, 4441, 666, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2097, '2023-11-20', 866, 4442, 666, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (2098, '2023-11-20', 925, 4443, 666, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2099, '2023-11-20', 1115, 4444, 666, 365, '1.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '6.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2100, '2023-11-20', 1112, 4445, 666, NULL, '5.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2101, '2023-11-20', 1111, 4446, 666, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2102, '2023-11-20', 960, 4447, 666, NULL, '3.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2103, '2023-11-20', 867, 4471, 667, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2104, '2023-11-20', 872, 4472, 667, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2105, '2023-11-20', 1037, 4473, 667, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2106, '2023-11-20', 1072, 4474, 667, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2107, '2023-11-20', 1089, 4475, 667, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2108, '2023-11-20', 938, 4476, 668, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2109, '2023-11-20', 1059, 4477, 668, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2110, '2023-11-20', 859, 4478, 668, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2112, '2023-11-20', 867, 4526, 672, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2113, '2023-11-20', 1111, 4527, 672, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2116, '2023-11-20', 856, 4542, 674, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2117, '2023-11-20', 926, 4543, 674, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2118, '2023-11-20', 953, 4544, 674, NULL, '5.0000', '13000.0000', '13000.0000', '15000.0000', '15000.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 (2119, '2023-11-20', 859, 4545, 674, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2120, '2023-11-20', 1078, 4546, 674, NULL, '1.0000', '2000.0000', '2000.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 (2121, '2023-11-20', 1059, 4547, 674, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (2122, '2023-11-20', 1058, 4548, 674, NULL, '1.0000', '2000.0000', '2000.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 (2123, '2023-11-20', 1080, 4549, 674, NULL, '1.0000', '3500.0000', '3500.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 (2124, '2023-11-20', 1074, 4550, 674, NULL, '3.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2125, '2023-11-20', 1089, 4551, 674, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2126, '2023-11-20', 1034, 4552, 674, NULL, '2.0000', '1900.0000', '1900.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 (2127, '2023-11-20', 996, 4553, 674, NULL, '1.0000', '7000.0000', '7000.0000', '7000.0000', '7000.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 (2131, '2023-11-20', 953, 4557, 676, NULL, '1.0000', '13000.0000', '13000.0000', '15000.0000', '15000.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 (2132, '2023-11-20', 1094, 4558, 676, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2133, '2023-11-20', 1088, 4559, 676, NULL, '1.0000', '3500.0000', '3500.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 (2134, '2023-11-20', 856, 4560, 677, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2135, '2023-11-20', 892, 4561, 677, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2136, '2023-11-20', 906, 4562, 677, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2137, '2023-11-20', 1086, 4563, 677, NULL, '1.0000', '3500.0000', '3500.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 (2138, '2023-11-20', 1023, 4564, 677, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2139, '2023-11-20', 1094, 4565, 677, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2140, '2023-11-21', 893, 4582, 679, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2141, '2023-11-21', 897, 4583, 679, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2142, '2023-11-21', 946, 4584, 679, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2143, '2023-11-21', 866, 4585, 679, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (2144, '2023-11-21', 1051, 4586, 679, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2145, '2023-11-21', 1085, 4587, 679, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (2146, '2023-11-21', 880, 4623, 683, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2147, '2023-11-21', 950, 4624, 683, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2148, '2023-11-21', 956, 4625, 683, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (2149, '2023-11-21', 866, 4626, 683, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (2150, '2023-11-21', 1086, 4627, 683, NULL, '1.0000', '3500.0000', '3500.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 (2151, '2023-11-21', 1080, 4628, 683, NULL, '1.0000', '3500.0000', '3500.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 (2152, '2023-11-21', 962, 4629, 683, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2153, '2023-11-21', 960, 4630, 683, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2154, '2023-11-21', 1051, 4631, 683, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2155, '2023-11-21', 1051, 4659, 687, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2156, '2023-11-21', 1040, 4660, 687, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2157, '2023-11-21', 948, 4661, 687, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2158, '2023-11-21', 950, 4662, 688, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2159, '2023-11-21', 1083, 4663, 688, NULL, '1.0000', '3500.0000', '3500.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 (2160, '2023-11-21', 1074, 4664, 688, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2161, '2023-11-21', 856, 4665, 688, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2162, '2023-11-21', 867, 4666, 688, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2163, '2023-11-21', 1090, 4667, 688, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2164, '2023-11-21', 1064, 4668, 688, NULL, '1.0000', '2500.0000', '2500.0000', '3500.0000', '3500.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 (2165, '2023-11-21', 865, 4673, 690, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2166, '2023-11-21', 939, 4674, 690, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2167, '2023-11-21', 926, 4675, 690, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2168, '2023-11-21', 956, 4676, 690, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (2169, '2023-11-21', 1115, 4677, 690, 365, '1.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '5.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2170, '2023-11-21', 1047, 4678, 690, 362, '1.0000', '4744.2211', '4744.2211', '4500.0000', '4500.0000', '13.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2171, '2023-11-21', 1090, 4679, 690, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2172, '2023-11-21', 1059, 4680, 690, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2173, '2023-11-21', 1111, 4681, 690, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2174, '2023-11-21', 1076, 4686, 691, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (2175, '2023-11-21', 1074, 4687, 691, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2176, '2023-11-21', 863, 4688, 691, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2177, '2023-11-21', 1059, 4689, 691, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2178, '2023-11-22', 866, 4690, 692, NULL, '1.0000', '2000.0000', '2000.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 (2179, '2023-11-22', 935, 4691, 692, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2180, '2023-11-22', 951, 4692, 692, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2181, '2023-11-22', 892, 4693, 692, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2182, '2023-11-22', 1111, 4694, 692, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (2183, '2023-11-22', 914, 4700, 694, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2184, '2023-11-22', 941, 4701, 694, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2185, '2023-11-22', 1111, 4702, 694, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2186, '2023-11-22', 950, 4703, 695, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2187, '2023-11-22', 1097, 4704, 695, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2188, '2023-11-22', 873, 4705, 695, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2189, '2023-11-22', 956, 4719, 697, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (2190, '2023-11-22', 867, 4720, 697, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2191, '2023-11-22', 918, 4721, 697, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2192, '2023-11-22', 902, 4722, 697, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2193, '2023-11-22', 865, 4723, 697, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2194, '2023-11-22', 1059, 4724, 697, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2195, '2023-11-22', 1115, 4725, 697, 365, '1.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '4.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2196, '2023-11-22', 1085, 4726, 697, NULL, '1.0000', '3500.0000', '3500.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 (2197, '2023-11-22', 948, 4727, 698, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2198, '2023-11-22', 866, 4728, 698, NULL, '3.0000', '2000.0000', '2000.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 (2199, '2023-11-22', 914, 4729, 698, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2200, '2023-11-22', 949, 4730, 698, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2201, '2023-11-22', 915, 4731, 698, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2202, '2023-11-22', 1111, 4732, 698, NULL, '7.0000', '500.0000', '500.0000', '500.0000', '500.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 (2203, '2023-11-22', 860, 4733, 699, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2204, '2023-11-22', 865, 4734, 699, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2205, '2023-11-22', 1111, 4735, 699, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (2206, '2023-11-22', 1080, 4736, 700, NULL, '1.0000', '3500.0000', '3500.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 (2207, '2023-11-22', 1085, 4737, 700, NULL, '1.0000', '3500.0000', '3500.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 (2208, '2023-11-22', 926, 4740, 702, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2209, '2023-11-22', 950, 4741, 702, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2210, '2023-11-22', 901, 4742, 702, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2211, '2023-11-22', 953, 4743, 702, NULL, '1.0000', '13000.0000', '13000.0000', '15000.0000', '15000.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 (2212, '2023-11-22', 872, 4744, 702, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2213, '2023-11-22', 866, 4745, 702, NULL, '1.0000', '2000.0000', '2000.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 (2214, '2023-11-22', 865, 4746, 702, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2215, '2023-11-22', 1111, 4747, 702, NULL, '9.0000', '500.0000', '500.0000', '500.0000', '500.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 (2216, '2023-11-22', 1016, 4780, 708, NULL, '1.0000', '2000.0000', '2000.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 (2217, '2023-11-22', 956, 4781, 709, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (2218, '2023-11-22', 1086, 4782, 709, NULL, '1.0000', '3500.0000', '3500.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 (2219, '2023-11-22', 1080, 4783, 709, NULL, '1.0000', '3500.0000', '3500.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 (2220, '2023-11-22', 1115, 4784, 709, 365, '1.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '3.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2221, '2023-11-22', 1051, 4785, 709, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2222, '2023-11-22', 989, 4811, 711, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2223, '2023-11-22', 1072, 4812, 711, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2224, '2023-11-22', 860, 4813, 711, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2225, '2023-11-22', 935, 4814, 711, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2226, '2023-11-22', 953, 4815, 711, NULL, '1.0000', '13000.0000', '13000.0000', '15000.0000', '15000.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 (2227, '2023-11-22', 1059, 4816, 711, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2228, '2023-11-22', 1058, 4817, 712, NULL, '1.0000', '2000.0000', '2000.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 (2229, '2023-11-22', 859, 4818, 713, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2230, '2023-11-22', 1014, 4819, 713, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2231, '2023-11-22', 859, 4820, 713, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2232, '2023-11-22', 1040, 4821, 713, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2233, '2023-11-22', 1059, 4822, 713, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2234, '2023-11-23', 866, 4823, 714, NULL, '3.0000', '2000.0000', '2000.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 (2235, '2023-11-23', 933, 4824, 714, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2236, '2023-11-23', 933, 4825, 714, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2237, '2023-11-23', 946, 4826, 714, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2238, '2023-11-23', 856, 4827, 714, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2239, '2023-11-23', 951, 4828, 714, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2240, '2023-11-23', 882, 4829, 714, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2241, '2023-11-23', 1112, 4830, 714, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2242, '2023-11-23', 1087, 4831, 714, NULL, '1.0000', '3500.0000', '3500.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 (2243, '2023-11-23', 1052, 4832, 714, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2244, '2023-11-23', 938, 4833, 714, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2245, '2023-11-23', 1059, 4834, 714, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (2246, '2023-11-23', 946, 4835, 714, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2247, '2023-11-23', 945, 4836, 714, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2248, '2023-11-23', 1111, 4837, 714, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2249, '2023-11-23', 962, 4838, 714, NULL, '3.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2250, '2023-11-23', 889, 4839, 715, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2251, '2023-11-23', 948, 4840, 715, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2252, '2023-11-23', 1111, 4841, 715, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2253, '2023-11-23', 1055, 4842, 716, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2254, '2023-11-23', 877, 4843, 717, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2255, '2023-11-23', 1111, 4844, 717, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2256, '2023-11-23', 884, 4845, 718, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2257, '2023-11-23', 1111, 4846, 718, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2258, '2023-11-23', 942, 4860, 721, NULL, '1.0000', '8900.0000', '8900.0000', '7900.0000', '7900.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 (2259, '2023-11-23', 861, 4861, 721, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2260, '2023-11-23', 1089, 4862, 721, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2261, '2023-11-23', 1097, 4876, 722, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2262, '2023-11-23', 918, 4877, 722, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2263, '2023-11-23', 956, 4878, 722, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (2264, '2023-11-23', 937, 4879, 722, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2265, '2023-11-23', 908, 4880, 722, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2266, '2023-11-23', 868, 4881, 722, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2267, '2023-11-23', 860, 4882, 722, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2268, '2023-11-23', 959, 4883, 722, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2269, '2023-11-23', 1059, 4884, 722, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2270, '2023-11-23', 942, 4885, 722, NULL, '1.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (2271, '2023-11-23', 1132, 4899, 727, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2272, '2023-11-23', 1059, 4908, 728, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2278, '2023-11-23', 888, 4914, 729, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2279, '2023-11-23', 919, 4915, 729, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2280, '2023-11-23', 865, 4916, 729, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2281, '2023-11-23', 872, 4917, 729, NULL, '1.0000', '8900.0000', '8900.0000', '7900.0000', '7900.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 (2282, '2023-11-23', 1111, 4918, 729, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (2283, '2023-11-23', 880, 4919, 730, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2284, '2023-11-23', 918, 4920, 730, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2285, '2023-11-23', 1047, 4921, 730, 362, '1.0000', '4744.2211', '4744.2211', '4500.0000', '4500.0000', '12.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2286, '2023-11-23', 865, 4922, 730, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2287, '2023-11-23', 1046, 4939, 732, NULL, '1.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (2288, '2023-11-23', 857, 4940, 732, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2289, '2023-11-23', 912, 4941, 732, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2290, '2023-11-23', 1035, 4954, 733, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2291, '2023-11-23', 1059, 4955, 733, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2292, '2023-11-23', 947, 4956, 733, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2293, '2023-11-23', 956, 4957, 733, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (2303, '2023-11-23', 1042, 4976, 735, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2304, '2023-11-23', 861, 4977, 736, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2305, '2023-11-23', 1010, 4978, 736, NULL, '1.0000', '85000.0000', '85000.0000', '85000.0000', '85000.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 (2306, '2023-11-23', 1059, 4979, 736, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2307, '2023-11-23', 1086, 4986, 738, NULL, '1.0000', '3500.0000', '3500.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 (2308, '2023-11-23', 884, 4987, 738, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2309, '2023-11-23', 868, 4988, 738, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2310, '2023-11-23', 892, 4989, 738, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2311, '2023-11-23', 1059, 4990, 738, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2312, '2023-11-23', 1076, 4991, 738, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (2313, '2023-11-23', 1059, 4992, 739, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2314, '2023-11-23', 859, 4993, 739, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2315, '2023-11-23', 868, 4994, 740, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2316, '2023-11-23', 943, 4995, 740, NULL, '1.0000', '7900.0000', '7900.0000', '4500.0000', '4500.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 (2317, '2023-11-23', 856, 4996, 740, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2318, '2023-11-23', 866, 4997, 740, NULL, '1.0000', '2000.0000', '2000.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 (2319, '2023-11-23', 1006, 4998, 740, NULL, '1.0000', '6300.0000', '6300.0000', '6300.0000', '6300.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 (2320, '2023-11-23', 1089, 4999, 740, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2321, '2023-11-23', 1061, 5000, 740, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (2322, '2023-11-23', 954, 5001, 740, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2323, '2023-11-23', 1054, 5002, 740, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2324, '2023-11-24', 1034, 5003, 741, NULL, '1.0000', '1900.0000', '1900.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 (2325, '2023-11-24', 946, 5018, 743, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2326, '2023-11-24', 942, 5019, 743, NULL, '1.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (2327, '2023-11-24', 868, 5020, 743, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2328, '2023-11-24', 1097, 5021, 743, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2329, '2023-11-24', 1086, 5022, 743, NULL, '1.0000', '3500.0000', '3500.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 (2334, '2023-11-24', 912, 5037, 745, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2335, '2023-11-24', 866, 5038, 745, NULL, '1.0000', '2000.0000', '2000.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 (2336, '2023-11-24', 931, 5039, 745, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (2337, '2023-11-24', 884, 5040, 745, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2338, '2023-11-24', 1059, 5041, 745, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2339, '2023-11-24', 1115, 5042, 745, 365, '1.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '2.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2340, '2023-11-24', 942, 5052, 748, NULL, '1.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (2341, '2023-11-24', 946, 5053, 748, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2342, '2023-11-24', 1089, 5054, 748, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2343, '2023-11-24', 1072, 5055, 749, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2344, '2023-11-24', 1140, 5056, 749, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2345, '2023-11-24', 861, 5057, 749, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2346, '2023-11-24', 898, 5064, 752, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2347, '2023-11-24', 1059, 5065, 752, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2348, '2023-11-24', 932, 5066, 753, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2349, '2023-11-24', 897, 5067, 753, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2350, '2023-11-24', 866, 5068, 753, NULL, '3.0000', '2000.0000', '2000.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 (2351, '2023-11-24', 948, 5069, 753, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2352, '2023-11-24', 935, 5070, 753, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2353, '2023-11-24', 1080, 5071, 754, NULL, '1.0000', '3500.0000', '3500.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 (2354, '2023-11-24', 1072, 5072, 755, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2355, '2023-11-24', 866, 5093, 756, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (2356, '2023-11-24', 871, 5094, 756, NULL, '1.0000', '10400.0000', '10400.0000', '10400.0000', '10400.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 (2357, '2023-11-24', 933, 5095, 756, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2358, '2023-11-24', 912, 5096, 756, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2359, '2023-11-24', 1053, 5097, 756, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2360, '2023-11-24', 1054, 5098, 756, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2361, '2023-11-24', 1054, 5131, 758, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2362, '2023-11-24', 1059, 5132, 758, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2363, '2023-11-24', 933, 5133, 759, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2364, '2023-11-24', 884, 5134, 759, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2365, '2023-11-24', 931, 5135, 759, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (2366, '2023-11-24', 866, 5136, 759, NULL, '1.0000', '2000.0000', '2000.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 (2367, '2023-11-24', 1089, 5137, 759, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2368, '2023-11-24', 1086, 5138, 759, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (2369, '2023-11-24', 1093, 5139, 759, NULL, '1.0000', '2000.0000', '2000.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 (2370, '2023-11-24', 1059, 5140, 759, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2371, '2023-11-25', 948, 5141, 760, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2372, '2023-11-25', 950, 5142, 760, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2373, '2023-11-25', 946, 5143, 760, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2374, '2023-11-25', 918, 5144, 760, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2375, '2023-11-25', 860, 5145, 760, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2376, '2023-11-25', 864, 5146, 760, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2377, '2023-11-25', 1111, 5147, 760, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (2381, '2023-11-25', 860, 5151, 762, NULL, '3.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2382, '2023-11-25', 915, 5152, 762, NULL, '4.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2383, '2023-11-25', 1111, 5153, 762, NULL, '7.0000', '500.0000', '500.0000', '500.0000', '500.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 (2384, '2023-11-25', 902, 5154, 763, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2385, '2023-11-25', 866, 5155, 763, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (2386, '2023-11-25', 1111, 5156, 763, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (2402, '2023-11-25', 1115, 5222, 768, 365, '2.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '0.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2403, '2023-11-25', 1094, 5223, 768, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2404, '2023-11-25', 858, 5224, 768, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2405, '2023-11-25', 868, 5225, 768, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2406, '2023-11-25', 884, 5226, 768, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2407, '2023-11-25', 893, 5227, 768, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2408, '2023-11-25', 865, 5228, 768, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2409, '2023-11-25', 959, 5229, 768, NULL, '3.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2418, '2023-11-25', 1059, 5242, 769, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2419, '2023-11-25', 882, 5243, 769, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2420, '2023-11-25', 1088, 5244, 769, NULL, '1.0000', '3500.0000', '3500.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 (2421, '2023-11-25', 1086, 5245, 769, NULL, '1.0000', '3500.0000', '3500.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 (2422, '2023-11-25', 868, 5246, 769, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2423, '2023-11-25', 872, 5247, 769, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2424, '2023-11-25', 909, 5248, 769, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2425, '2023-11-25', 1111, 5249, 769, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2426, '2023-11-25', 1087, 5250, 770, NULL, '1.0000', '3500.0000', '3500.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 (2427, '2023-11-25', 892, 5251, 770, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2428, '2023-11-25', 1059, 5252, 770, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2429, '2023-11-25', 962, 5253, 770, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2430, '2023-11-25', 1143, 5254, 771, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2431, '2023-11-25', 910, 5255, 771, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2432, '2023-11-25', 865, 5256, 771, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2433, '2023-11-25', 935, 5272, 773, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2434, '2023-11-25', 1111, 5273, 773, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2461, '2023-11-25', 1086, 5354, 776, NULL, '1.0000', '3500.0000', '3500.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 (2462, '2023-11-25', 1046, 5355, 776, NULL, '1.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (2463, '2023-11-25', 867, 5356, 776, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2464, '2023-11-25', 926, 5357, 776, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2465, '2023-11-25', 874, 5358, 776, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2466, '2023-11-25', 1059, 5359, 776, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2467, '2023-11-25', 1059, 5360, 777, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2468, '2023-11-25', 858, 5361, 777, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2469, '2023-11-25', 868, 5362, 777, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2470, '2023-11-25', 860, 5363, 777, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2471, '2023-11-25', 953, 5364, 777, NULL, '1.0000', '13000.0000', '13000.0000', '20000.0000', '20000.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 (2472, '2023-11-25', 857, 5365, 777, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2473, '2023-11-25', 912, 5366, 777, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2474, '2023-11-25', 926, 5367, 777, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2475, '2023-11-25', 1052, 5368, 777, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2476, '2023-11-25', 1088, 5369, 777, NULL, '1.0000', '3500.0000', '3500.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 (2477, '2023-11-25', 1047, 5370, 777, 362, '1.0000', '4744.2211', '4744.2211', '4500.0000', '4500.0000', '10.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2478, '2023-11-25', 1080, 5371, 777, NULL, '1.0000', '3500.0000', '3500.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 (2479, '2023-11-25', 1097, 5372, 777, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2480, '2023-11-26', 949, 5391, 779, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2481, '2023-11-26', 948, 5392, 779, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2482, '2023-11-26', 936, 5393, 779, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2483, '2023-11-26', 912, 5394, 779, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2484, '2023-11-26', 1094, 5395, 779, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2485, '2023-11-26', 1125, 5396, 779, NULL, '1.0000', '10500.0000', '10500.0000', '10500.0000', '10500.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 (2488, '2023-11-26', 864, 5436, 783, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2489, '2023-11-26', 912, 5437, 783, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2490, '2023-11-26', 946, 5438, 783, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2491, '2023-11-26', 1075, 5439, 783, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2492, '2023-11-26', 1059, 5440, 783, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2503, '2023-11-26', 859, 5451, 785, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2504, '2023-11-26', 1016, 5452, 785, NULL, '1.0000', '2000.0000', '2000.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 (2505, '2023-11-26', 1111, 5453, 785, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2506, '2023-11-26', 945, 5454, 786, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2507, '2023-11-26', 918, 5455, 786, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2508, '2023-11-26', 1059, 5456, 786, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (2509, '2023-11-26', 1089, 5457, 786, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2510, '2023-11-26', 1091, 5458, 786, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2511, '2023-11-26', 1092, 5459, 786, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (2512, '2023-11-26', 1074, 5460, 786, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2513, '2023-11-26', 1076, 5461, 786, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (2514, '2023-11-26', 1046, 5462, 786, NULL, '1.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (2515, '2023-11-26', 1088, 5463, 786, NULL, '1.0000', '3500.0000', '3500.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 (2566, '2023-11-26', 1046, 5533, 790, NULL, '1.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (2567, '2023-11-26', 1059, 5534, 790, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2568, '2023-11-26', 946, 5535, 790, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2569, '2023-11-26', 911, 5536, 790, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2570, '2023-11-26', 856, 5537, 790, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2571, '2023-11-26', 945, 5538, 790, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2580, '2023-11-26', 860, 5608, 795, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2581, '2023-11-26', 861, 5609, 795, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2582, '2023-11-26', 1086, 5610, 795, NULL, '1.0000', '3500.0000', '3500.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 (2583, '2023-11-26', 1081, 5611, 795, NULL, '1.0000', '3500.0000', '3500.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 (2584, '2023-11-26', 1079, 5612, 795, NULL, '1.0000', '2000.0000', '2000.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 (2585, '2023-11-26', 1132, 5613, 795, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2586, '2023-11-26', 1144, 5614, 795, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2587, '2023-11-26', 956, 5631, 796, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (2588, '2023-11-26', 1126, 5632, 796, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2589, '2023-11-26', 1035, 5633, 796, 395, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '22.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2590, '2023-11-26', 1097, 5641, 797, NULL, '10.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2591, '2023-11-26', 1051, 5642, 797, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (2592, '2023-11-26', 1059, 5643, 797, NULL, '10.0000', '500.0000', '500.0000', '500.0000', '500.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 (2593, '2023-11-26', 948, 5644, 797, NULL, '3.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2594, '2023-11-26', 946, 5645, 797, NULL, '3.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2595, '2023-11-26', 942, 5646, 797, NULL, '3.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (2596, '2023-11-26', 860, 5647, 797, NULL, '3.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2597, '2023-11-26', 857, 5648, 797, NULL, '3.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2598, '2023-11-26', 856, 5649, 797, NULL, '3.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2599, '2023-11-26', 953, 5650, 797, NULL, '2.0000', '13000.0000', '13000.0000', '15000.0000', '15000.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 (2600, '2023-11-26', 1052, 5651, 797, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2601, '2023-11-26', 949, 5652, 798, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2602, '2023-11-26', 1049, 5653, 798, 357, '1.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '170.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2603, '2023-11-26', 1051, 5654, 799, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2604, '2023-11-26', 1042, 5657, 801, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2605, '2023-11-26', 867, 5679, 802, NULL, '1.0000', '8900.0000', '8900.0000', '7900.0000', '7900.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 (2606, '2023-11-26', 1087, 5680, 802, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (2607, '2023-11-26', 856, 5681, 802, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2608, '2023-11-26', 861, 5682, 803, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2609, '2023-11-26', 868, 5683, 803, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2610, '2023-11-26', 1061, 5684, 803, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (2611, '2023-11-26', 1094, 5685, 803, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2621, '2023-11-26', 1058, 5705, 805, NULL, '1.0000', '2000.0000', '2000.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 (2622, '2023-11-26', 987, 5710, 807, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (2623, '2023-11-26', 1029, 5711, 807, NULL, '14.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2624, '2023-11-26', 857, 5712, 807, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2625, '2023-11-26', 861, 5713, 807, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2626, '2023-11-26', 1059, 5714, 807, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2627, '2023-11-26', 1145, 5715, 807, NULL, '2.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (2628, '2023-11-26', 1003, 5716, 807, NULL, '1.0000', '8000.0000', '8000.0000', '8000.0000', '8000.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 (2629, '2023-11-26', 1059, 5717, 807, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2630, '2023-11-26', 1058, 5718, 807, NULL, '1.0000', '2000.0000', '2000.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 (2631, '2023-11-26', 918, 5719, 808, NULL, '1.0000', '9900.0000', '9900.0000', '7900.0000', '7900.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 (2632, '2023-11-26', 1111, 5720, 808, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2638, '2023-11-26', 872, 5726, 811, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2639, '2023-11-26', 1048, 5727, 811, 363, '1.0000', '3381.8182', '3381.8182', '3000.0000', '3000.0000', '6.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2640, '2023-11-26', 863, 5728, 812, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2641, '2023-11-26', 856, 5729, 812, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2642, '2023-11-26', 1111, 5730, 812, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2643, '2023-11-26', 990, 5737, 814, NULL, '1.0000', '6300.0000', '6300.0000', '6500.0000', '6500.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 (2644, '2023-11-26', 859, 5738, 814, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2645, '2023-11-26', 876, 5739, 814, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2646, '2023-11-26', 1059, 5740, 814, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2647, '2023-11-26', 864, 5741, 814, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2648, '2023-11-26', 1059, 5742, 815, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2649, '2023-11-26', 1040, 5743, 816, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2650, '2023-11-26', 1111, 5744, 816, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (2651, '2023-11-27', 1049, 5916, 818, 357, '4.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '166.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2652, '2023-11-27', 1085, 5917, 818, NULL, '1.0000', '3500.0000', '3500.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 (2653, '2023-11-27', 1097, 5918, 818, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2654, '2023-11-27', 1071, 5919, 818, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2655, '2023-11-27', 1093, 5920, 818, NULL, '1.0000', '2000.0000', '2000.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 (2656, '2023-11-27', 1080, 5921, 818, NULL, '1.0000', '3500.0000', '3500.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 (2657, '2023-11-27', 1059, 5922, 818, NULL, '7.0000', '500.0000', '500.0000', '500.0000', '500.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 (2658, '2023-11-27', 933, 5923, 818, NULL, '3.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2659, '2023-11-27', 942, 5924, 818, NULL, '2.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (2660, '2023-11-27', 943, 5925, 818, NULL, '3.0000', '7900.0000', '7900.0000', '4500.0000', '4500.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 (2661, '2023-11-27', 867, 5926, 818, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2662, '2023-11-27', 862, 5927, 818, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2663, '2023-11-27', 940, 5928, 818, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2664, '2023-11-27', 939, 5929, 818, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2665, '2023-11-27', 897, 5930, 818, NULL, '1.0000', '8900.0000', '8900.0000', '6900.0000', '6900.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 (2666, '2023-11-27', 859, 5931, 818, NULL, '2.0000', '7900.0000', '7900.0000', '6900.0000', '6900.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 (2667, '2023-11-27', 865, 5932, 818, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2668, '2023-11-27', 948, 5933, 818, NULL, '3.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2669, '2023-11-27', 1111, 5934, 818, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2670, '2023-11-27', 885, 5935, 818, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2671, '2023-11-27', 1035, 5956, 819, 395, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '20.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2675, '2023-11-27', 956, 5980, 821, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (2676, '2023-11-27', 1051, 5981, 821, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2677, '2023-11-27', 1086, 5982, 821, NULL, '3.0000', '3500.0000', '3500.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 (2678, '2023-11-27', 890, 5983, 821, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2679, '2023-11-27', 1059, 5984, 821, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2680, '2023-11-27', 1047, 5985, 821, 362, '5.0000', '4744.2211', '4744.2211', '4500.0000', '4500.0000', '6.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2681, '2023-11-27', 1115, 5986, 821, 359, '5.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '129.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2682, '2023-11-27', 958, 5987, 821, NULL, '1.0000', '5500.0000', '5500.0000', '5500.0000', '5500.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 (2683, '2023-11-27', 937, 5988, 822, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2684, '2023-11-27', 949, 5989, 822, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2685, '2023-11-27', 911, 5990, 822, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2686, '2023-11-27', 1111, 5991, 822, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (2687, '2023-11-27', 861, 6006, 824, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2688, '2023-11-27', 856, 6007, 824, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2689, '2023-11-27', 946, 6008, 824, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2690, '2023-11-27', 952, 6009, 824, NULL, '1.0000', '13000.0000', '13000.0000', '15000.0000', '15000.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 (2691, '2023-11-27', 953, 6010, 824, NULL, '1.0000', '13000.0000', '13000.0000', '20000.0000', '20000.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 (2692, '2023-11-27', 942, 6011, 824, NULL, '2.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (2693, '2023-11-27', 1111, 6012, 824, NULL, '8.0000', '500.0000', '500.0000', '500.0000', '500.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 (2694, '2023-11-27', 1092, 6013, 824, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (2695, '2023-11-27', 987, 6019, 826, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (2696, '2023-11-27', 941, 6020, 826, NULL, '1.0000', '6900.0000', '6900.0000', '4500.0000', '4500.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 (2703, '2023-11-28', 932, 6037, 830, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2704, '2023-11-28', 1059, 6038, 830, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2705, '2023-11-28', 958, 6039, 831, NULL, '1.0000', '5500.0000', '5500.0000', '5500.0000', '5500.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 (2706, '2023-11-28', 919, 6040, 831, NULL, '1.0000', '9900.0000', '9900.0000', '7900.0000', '7900.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 (2707, '2023-11-28', 1111, 6041, 831, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2708, '2023-11-28', 860, 6046, 832, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2709, '2023-11-28', 948, 6047, 832, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2710, '2023-11-28', 1059, 6048, 832, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2711, '2023-11-28', 1061, 6049, 832, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (2712, '2023-11-28', 942, 6050, 833, NULL, '1.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (2713, '2023-11-28', 884, 6051, 833, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2714, '2023-11-28', 866, 6052, 833, NULL, '1.0000', '2000.0000', '2000.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 (2715, '2023-11-28', 893, 6053, 833, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2716, '2023-11-28', 1081, 6054, 833, NULL, '1.0000', '3500.0000', '3500.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 (2717, '2023-11-28', 1082, 6055, 833, NULL, '1.0000', '3500.0000', '3500.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 (2719, '2023-11-28', 1036, 6057, 835, NULL, '1.0000', '2700.0000', '2700.0000', '2700.0000', '2700.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 (2720, '2023-11-28', 1132, 6058, 835, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2727, '2023-11-28', 1091, 6071, 837, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2728, '2023-11-28', 918, 6073, 839, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2729, '2023-11-28', 865, 6074, 839, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2730, '2023-11-28', 1059, 6075, 839, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2731, '2023-11-28', 1042, 6076, 839, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2732, '2023-11-28', 1094, 6077, 840, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2733, '2023-11-28', 935, 6078, 841, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2734, '2023-11-28', 945, 6079, 841, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2735, '2023-11-28', 1085, 6080, 841, NULL, '1.0000', '3500.0000', '3500.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 (2736, '2023-11-28', 856, 6081, 841, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2737, '2023-11-28', 858, 6082, 841, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2738, '2023-11-28', 1059, 6083, 841, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2739, '2023-11-28', 917, 6084, 841, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2740, '2023-11-28', 860, 6085, 841, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2741, '2023-11-28', 1111, 6086, 841, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (2742, '2023-11-28', 864, 6087, 842, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2743, '2023-11-28', 945, 6088, 842, NULL, '3.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2744, '2023-11-28', 859, 6089, 842, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2745, '2023-11-28', 1085, 6090, 842, NULL, '1.0000', '3500.0000', '3500.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 (2746, '2023-11-28', 1059, 6091, 842, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2747, '2023-11-28', 959, 6092, 842, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2748, '2023-11-28', 1089, 6093, 842, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2749, '2023-11-28', 1111, 6094, 842, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (2750, '2023-11-28', 1049, 6097, 844, 357, '2.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '164.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2751, '2023-11-28', 884, 6098, 844, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2752, '2023-11-28', 933, 6099, 844, NULL, '1.0000', '6900.0000', '6900.0000', '7900.0000', '7900.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 (2753, '2023-11-28', 1111, 6100, 844, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2757, '2023-11-29', 931, 6108, 847, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (2758, '2023-11-29', 897, 6109, 847, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2759, '2023-11-29', 865, 6110, 847, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2760, '2023-11-29', 1086, 6111, 847, NULL, '1.0000', '3500.0000', '3500.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 (2761, '2023-11-29', 1111, 6112, 847, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2762, '2023-11-29', 918, 6116, 849, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2763, '2023-11-29', 1111, 6117, 849, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2764, '2023-11-29', 865, 6118, 850, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2765, '2023-11-29', 1111, 6119, 850, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2766, '2023-11-29', 1036, 6129, 853, NULL, '1.0000', '2700.0000', '2700.0000', '2700.0000', '2700.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 (2767, '2023-11-29', 885, 6130, 854, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2768, '2023-11-29', 936, 6131, 854, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2769, '2023-11-29', 937, 6132, 854, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2770, '2023-11-29', 856, 6133, 854, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2771, '2023-11-29', 1093, 6134, 854, NULL, '1.0000', '2000.0000', '2000.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 (2772, '2023-11-29', 1096, 6135, 854, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2773, '2023-11-29', 1059, 6136, 854, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2774, '2023-11-29', 1075, 6137, 854, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2775, '2023-11-30', 884, 6146, 856, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2776, '2023-11-30', 861, 6147, 856, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2777, '2023-11-30', 934, 6148, 856, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2778, '2023-11-30', 1059, 6149, 856, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2779, '2023-11-30', 1051, 6150, 856, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2780, '2023-11-30', 958, 6151, 857, NULL, '1.0000', '5500.0000', '5500.0000', '5500.0000', '5500.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 (2781, '2023-11-30', 961, 6152, 857, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2782, '2023-11-30', 1126, 6158, 860, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2783, '2023-11-30', 1132, 6159, 860, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2784, '2023-11-30', 941, 6166, 863, NULL, '1.0000', '6900.0000', '6900.0000', '4500.0000', '4500.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 (2785, '2023-11-30', 859, 6167, 863, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2786, '2023-11-30', 917, 6168, 863, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2788, '2023-11-30', 861, 6238, 866, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2789, '2023-11-30', 1075, 6239, 866, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2790, '2023-11-30', 941, 6240, 866, NULL, '1.0000', '6900.0000', '6900.0000', '4500.0000', '4500.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 (2791, '2023-11-30', 1059, 6241, 866, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2792, '2023-11-30', 865, 6242, 867, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2793, '2023-11-30', 920, 6243, 867, NULL, '1.0000', '10400.0000', '10400.0000', '10400.0000', '10400.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 (2794, '2023-11-30', 1096, 6244, 867, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2795, '2023-11-30', 1064, 6245, 867, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2796, '2023-11-30', 1059, 6246, 867, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2797, '2023-11-30', 952, 6247, 868, NULL, '1.0000', '13000.0000', '13000.0000', '20000.0000', '20000.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 (2798, '2023-11-30', 1145, 6248, 868, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (2799, '2023-11-30', 1059, 6249, 868, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2800, '2023-11-30', 1003, 6250, 868, NULL, '1.0000', '8000.0000', '8000.0000', '8000.0000', '8000.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 (2801, '2023-11-30', 1058, 6251, 868, NULL, '1.0000', '2000.0000', '2000.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 (2802, '2023-11-30', 1031, 6252, 868, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2803, '2023-11-30', 1074, 6253, 869, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2804, '2023-11-30', 859, 6254, 869, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2805, '2023-11-30', 1059, 6255, 869, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2806, '2023-11-30', 859, 6256, 870, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2807, '2023-11-30', 1075, 6257, 870, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2808, '2023-11-30', 1059, 6258, 870, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2809, '2023-11-30', 1041, 6259, 865, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2815, '2023-11-30', 916, 6265, 872, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2816, '2023-11-30', 865, 6266, 872, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2817, '2023-11-30', 856, 6267, 873, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2818, '2023-11-30', 946, 6268, 873, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2819, '2023-11-30', 1090, 6269, 873, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2820, '2023-11-30', 1091, 6270, 873, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2821, '2023-11-30', 1117, 6271, 873, NULL, '1.0000', '2000.0000', '2000.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 (2822, '2023-11-30', 1059, 6272, 873, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2823, '2023-12-01', 858, 6273, 874, NULL, '3.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2824, '2023-12-01', 1111, 6274, 874, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2825, '2023-12-01', 872, 6281, 876, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2826, '2023-12-01', 866, 6282, 876, NULL, '1.0000', '2000.0000', '2000.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 (2827, '2023-12-01', 918, 6283, 876, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2828, '2023-12-01', 1090, 6284, 876, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2829, '2023-12-01', 1089, 6285, 876, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2830, '2023-12-01', 942, 6286, 876, NULL, '1.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (2831, '2023-12-01', 859, 6287, 877, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2832, '2023-12-01', 1059, 6288, 877, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2833, '2023-12-01', 877, 6307, 879, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2834, '2023-12-01', 913, 6308, 879, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2835, '2023-12-01', 1052, 6309, 879, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2836, '2023-12-01', 938, 6310, 879, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2837, '2023-12-01', 866, 6311, 879, NULL, '1.0000', '2000.0000', '2000.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 (2838, '2023-12-01', 1094, 6312, 879, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2839, '2023-12-01', 1059, 6313, 879, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2840, '2023-12-01', 869, 6314, 880, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2841, '2023-12-01', 1111, 6315, 880, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2842, '2023-12-01', 1088, 6316, 880, NULL, '1.0000', '3500.0000', '3500.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 (2843, '2023-12-01', 918, 6330, 882, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2844, '2023-12-01', 865, 6331, 882, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2845, '2023-12-01', 1089, 6332, 882, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2846, '2023-12-01', 1066, 6333, 882, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2847, '2023-12-01', 1059, 6334, 882, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2848, '2023-12-01', 1126, 6379, 884, NULL, '3.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2849, '2023-12-01', 987, 6380, 884, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (2850, '2023-12-01', 885, 6381, 884, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2851, '2023-12-01', 1132, 6382, 884, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2852, '2023-12-01', 957, 6383, 884, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (2853, '2023-12-01', 859, 6384, 884, NULL, '3.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2854, '2023-12-01', 1059, 6385, 884, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2855, '2023-12-01', 1008, 6386, 885, NULL, '1.0000', '50000.0000', '50000.0000', '50000.0000', '50000.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 (2856, '2023-12-01', 1059, 6387, 885, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2857, '2023-12-01', 860, 6388, 885, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2858, '2023-12-01', 956, 6389, 886, NULL, '2.0000', '15000.0000', '15000.0000', '30000.0000', '30000.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 (2859, '2023-12-01', 1086, 6390, 886, NULL, '3.0000', '3500.0000', '3500.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 (2860, '2023-12-01', 1059, 6391, 886, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2861, '2023-12-01', 1112, 6392, 886, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2862, '2023-12-01', 1013, 6393, 887, NULL, '1.0000', '72000.0000', '72000.0000', '72000.0000', '72000.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 (2863, '2023-12-01', 1049, 6394, 887, 357, '3.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '161.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2864, '2023-12-01', 982, 6395, 888, NULL, '2.0000', '12000.0000', '12000.0000', '12000.0000', '12000.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 (2865, '2023-12-01', 1074, 6396, 888, NULL, '3.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2866, '2023-12-01', 1097, 6397, 888, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2867, '2023-12-01', 956, 6398, 888, NULL, '1.0000', '15000.0000', '15000.0000', '30000.0000', '30000.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 (2868, '2023-12-01', 1072, 6399, 889, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2869, '2023-12-01', 1072, 6400, 890, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2870, '2023-12-02', 1111, 6420, 892, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2871, '2023-12-02', 868, 6421, 892, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2872, '2023-12-02', 858, 6422, 892, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2873, '2023-12-02', 892, 6423, 892, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2874, '2023-12-02', 962, 6424, 892, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (2875, '2023-12-02', 949, 6425, 892, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2876, '2023-12-02', 1134, 6426, 892, 368, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.0000', '21.0000', 1, 0, NULL, 5, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2877, '2023-12-02', 1049, 6427, 892, 357, '1.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '160.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_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, '2023-12-02', 1086, 6428, 892, NULL, '1.0000', '3500.0000', '3500.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 (2879, '2023-12-02', 1087, 6429, 893, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (2880, '2023-12-02', 1115, 6430, 893, 359, '3.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '126.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2881, '2023-12-02', 880, 6431, 893, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2882, '2023-12-02', 858, 6432, 893, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2883, '2023-12-02', 885, 6433, 893, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2884, '2023-12-02', 1111, 6434, 893, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (2885, '2023-12-02', 884, 6446, 895, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2886, '2023-12-02', 868, 6447, 895, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2887, '2023-12-02', 931, 6448, 895, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (2888, '2023-12-02', 1059, 6449, 895, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2889, '2023-12-02', 1051, 6450, 895, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2890, '2023-12-02', 1115, 6451, 895, 359, '1.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '125.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2906, '2023-12-02', 867, 6473, 898, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2907, '2023-12-02', 885, 6474, 898, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2908, '2023-12-02', 894, 6475, 898, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2909, '2023-12-02', 866, 6476, 898, NULL, '1.0000', '2000.0000', '2000.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 (2910, '2023-12-02', 1046, 6477, 898, NULL, '1.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (2911, '2023-12-02', 933, 6478, 898, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2912, '2023-12-02', 1089, 6479, 898, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2913, '2023-12-02', 1111, 6480, 898, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (2914, '2023-12-02', 880, 6483, 900, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2915, '2023-12-02', 1059, 6484, 900, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2916, '2023-12-02', 858, 6493, 901, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2917, '2023-12-02', 856, 6494, 901, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (2918, '2023-12-02', 1074, 6495, 901, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2919, '2023-12-02', 1094, 6496, 901, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2920, '2023-12-02', 918, 6497, 902, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2921, '2023-12-02', 948, 6498, 902, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2922, '2023-12-02', 866, 6499, 902, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (2923, '2023-12-02', 872, 6500, 902, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2924, '2023-12-02', 1111, 6501, 902, NULL, '5.0000', '500.0000', '500.0000', '500.0000', '500.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 (2925, '2023-12-02', 914, 6513, 904, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2926, '2023-12-02', 860, 6514, 904, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2927, '2023-12-02', 865, 6515, 904, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2928, '2023-12-02', 948, 6516, 904, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2929, '2023-12-02', 1049, 6517, 904, 357, '5.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '155.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2930, '2023-12-02', 1111, 6518, 904, NULL, '9.0000', '500.0000', '500.0000', '500.0000', '500.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 (2931, '2023-12-02', 1147, 6519, 904, NULL, '1.0000', '2000.0000', '2000.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 (2932, '2023-12-02', 860, 6520, 905, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2933, '2023-12-02', 857, 6521, 905, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2934, '2023-12-02', 1094, 6522, 905, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2935, '2023-12-02', 1088, 6523, 905, NULL, '1.0000', '3500.0000', '3500.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 (2936, '2023-12-02', 1111, 6524, 905, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2937, '2023-12-03', 910, 6549, 908, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2938, '2023-12-03', 873, 6550, 908, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2939, '2023-12-03', 1035, 6551, 908, 395, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '19.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2940, '2023-12-03', 1111, 6552, 908, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2941, '2023-12-03', 936, 6610, 911, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2942, '2023-12-03', 948, 6611, 911, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2943, '2023-12-03', 1053, 6612, 911, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2944, '2023-12-03', 1049, 6613, 911, 357, '2.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '153.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_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, '2023-12-03', 865, 6614, 911, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2946, '2023-12-03', 1148, 6615, 911, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2947, '2023-12-03', 1059, 6616, 911, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2948, '2023-12-03', 911, 6645, 912, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2949, '2023-12-03', 915, 6646, 912, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2950, '2023-12-03', 926, 6647, 912, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2951, '2023-12-03', 936, 6648, 912, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2952, '2023-12-03', 931, 6649, 912, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (2953, '2023-12-03', 865, 6650, 912, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2954, '2023-12-03', 942, 6651, 912, NULL, '1.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (2955, '2023-12-03', 1086, 6652, 912, NULL, '1.0000', '3500.0000', '3500.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 (2956, '2023-12-03', 866, 6653, 912, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (2957, '2023-12-03', 1089, 6654, 912, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (2958, '2023-12-03', 1049, 6655, 912, 357, '1.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '152.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2959, '2023-12-03', 1047, 6656, 912, 362, '2.0000', '4744.2211', '4744.2211', '4500.0000', '4500.0000', '4.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2960, '2023-12-03', 934, 6657, 913, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2961, '2023-12-03', 935, 6658, 913, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2962, '2023-12-03', 866, 6659, 913, NULL, '3.0000', '2000.0000', '2000.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 (2963, '2023-12-03', 1047, 6660, 913, 362, '3.0000', '4744.2211', '4744.2211', '4500.0000', '4500.0000', '1.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_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, '2023-12-03', 937, 6661, 913, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2965, '2023-12-03', 949, 6662, 913, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2966, '2023-12-03', 1148, 6663, 913, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2967, '2023-12-03', 1115, 6664, 913, 359, '1.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '124.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2968, '2023-12-03', 936, 6665, 914, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2969, '2023-12-03', 887, 6666, 914, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2970, '2023-12-03', 1111, 6667, 914, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (2971, '2023-12-03', 892, 6674, 916, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2972, '2023-12-03', 946, 6675, 916, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (2973, '2023-12-03', 885, 6676, 916, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (2974, '2023-12-03', 1002, 6677, 916, NULL, '1.0000', '9000.0000', '9000.0000', '9000.0000', '9000.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 (2975, '2023-12-03', 1059, 6678, 916, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2976, '2023-12-03', 941, 6679, 916, NULL, '1.0000', '6900.0000', '6900.0000', '4500.0000', '4500.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 (2977, '2023-12-03', 1149, 6685, 918, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2978, '2023-12-03', 1097, 6686, 919, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (2979, '2023-12-03', 1059, 6687, 919, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2980, '2023-12-03', 1060, 6738, 924, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (2981, '2023-12-03', 948, 6739, 924, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2982, '2023-12-03', 1072, 6740, 924, NULL, '4.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2983, '2023-12-03', 1067, 6741, 924, NULL, '2.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2984, '2023-12-03', 1061, 6742, 924, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (2985, '2023-12-03', 1051, 6743, 925, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2986, '2023-12-03', 956, 6744, 926, NULL, '2.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (2987, '2023-12-03', 858, 6745, 926, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2988, '2023-12-03', 1087, 6746, 926, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (2989, '2023-12-03', 932, 6747, 926, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2990, '2023-12-03', 990, 6748, 926, NULL, '2.0000', '6300.0000', '6300.0000', '6500.0000', '6500.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 (2991, '2023-12-03', 1029, 6749, 927, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (2992, '2023-12-03', 1072, 6750, 927, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (2993, '2023-12-03', 1059, 6751, 927, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2994, '2023-12-03', 864, 6815, 930, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (2995, '2023-12-03', 1111, 6816, 930, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (2996, '2023-12-03', 935, 6823, 931, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (2997, '2023-12-03', 1111, 6824, 931, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (2998, '2023-12-03', 956, 6852, 932, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (2999, '2023-12-03', 865, 6853, 932, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3000, '2023-12-03', 866, 6854, 932, NULL, '1.0000', '2000.0000', '2000.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 (3001, '2023-12-03', 908, 6855, 932, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3002, '2023-12-03', 1076, 6856, 932, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (3003, '2023-12-03', 1097, 6857, 932, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3004, '2023-12-03', 1059, 6858, 932, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3005, '2023-12-03', 980, 6859, 932, NULL, '1.0000', '27000.0000', '27000.0000', '27000.0000', '27000.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 (3006, '2023-12-03', 1057, 6860, 932, NULL, '4.0000', '2000.0000', '2000.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 (3007, '2023-12-03', 867, 6861, 932, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3008, '2023-12-03', 942, 6862, 932, NULL, '1.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (3009, '2023-12-03', 918, 6863, 933, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3010, '2023-12-03', 865, 6864, 933, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3011, '2023-12-03', 1042, 6865, 933, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3012, '2023-12-03', 1059, 6866, 933, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3013, '2023-12-03', 872, 6887, 934, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3014, '2023-12-03', 1111, 6888, 934, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3015, '2023-12-03', 956, 6889, 935, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (3016, '2023-12-03', 1126, 6890, 935, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (3017, '2023-12-03', 1059, 6891, 935, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3018, '2023-12-03', 859, 6892, 935, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3019, '2023-12-03', 860, 6893, 935, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3020, '2023-12-03', 1132, 6894, 935, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3021, '2023-12-03', 956, 6895, 936, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (3022, '2023-12-03', 912, 6896, 936, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3023, '2023-12-03', 960, 6897, 936, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (3024, '2023-12-03', 933, 6898, 936, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3025, '2023-12-03', 1010, 6899, 936, NULL, '1.0000', '85000.0000', '85000.0000', '85000.0000', '85000.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 (3026, '2023-12-03', 1059, 6900, 936, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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, '2023-12-03', 1150, 6901, 936, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3028, '2023-12-03', 1087, 6902, 936, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (3029, '2023-12-03', 975, 6906, 938, NULL, '1.0000', '32500.0000', '32500.0000', '32500.0000', '32500.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 (3030, '2023-12-03', 1057, 6907, 938, NULL, '1.0000', '2000.0000', '2000.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 (3031, '2023-12-03', 1059, 6908, 938, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3032, '2023-12-04', 918, 6909, 939, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3033, '2023-12-04', 1151, 6910, 939, NULL, '1.0000', '13000.0000', '13000.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 (3034, '2023-12-04', 915, 6911, 939, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3035, '2023-12-04', 865, 6912, 939, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3036, '2023-12-04', 866, 6913, 939, NULL, '1.0000', '2000.0000', '2000.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 (3037, '2023-12-04', 960, 6914, 939, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (3038, '2023-12-04', 1085, 6915, 939, NULL, '1.0000', '3500.0000', '3500.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 (3039, '2023-12-04', 1111, 6916, 939, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (3040, '2023-12-04', 911, 6924, 941, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3041, '2023-12-04', 861, 6925, 941, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3042, '2023-12-04', 947, 6926, 941, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3043, '2023-12-04', 942, 6927, 941, NULL, '1.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (3044, '2023-12-04', 866, 6928, 941, NULL, '1.0000', '2000.0000', '2000.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 (3045, '2023-12-04', 1087, 6929, 941, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (3046, '2023-12-04', 1089, 6930, 941, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (3047, '2023-12-04', 1111, 6931, 941, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3048, '2023-12-04', 891, 6967, 943, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3049, '2023-12-04', 892, 6968, 943, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3050, '2023-12-04', 935, 6969, 943, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3051, '2023-12-04', 1082, 6970, 943, NULL, '1.0000', '3500.0000', '3500.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 (3052, '2023-12-04', 1081, 6971, 943, NULL, '1.0000', '3500.0000', '3500.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 (3053, '2023-12-04', 960, 6972, 943, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (3054, '2023-12-04', 1134, 6973, 943, 368, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.0000', '20.0000', 1, 0, NULL, 5, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_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, '2023-12-04', 1035, 6978, 945, 395, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '17.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3056, '2023-12-04', 1059, 6979, 945, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3057, '2023-12-04', 1035, 6981, 947, 395, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '16.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3058, '2023-12-04', 1087, 6988, 949, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (3059, '2023-12-04', 953, 6989, 949, NULL, '1.0000', '13000.0000', '13000.0000', '13000.0000', '13000.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 (3060, '2023-12-04', 866, 6990, 949, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (3061, '2023-12-04', 937, 6991, 949, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3062, '2023-12-04', 918, 6997, 951, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3063, '2023-12-04', 866, 6998, 951, NULL, '1.0000', '2000.0000', '2000.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 (3064, '2023-12-04', 1059, 6999, 951, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3065, '2023-12-04', 1041, 7000, 951, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3066, '2023-12-04', 856, 7017, 954, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (3067, '2023-12-04', 950, 7018, 954, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3068, '2023-12-04', 908, 7019, 954, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3069, '2023-12-04', 866, 7020, 954, NULL, '1.0000', '2000.0000', '2000.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 (3070, '2023-12-04', 1036, 7021, 954, NULL, '1.0000', '2700.0000', '2700.0000', '2700.0000', '2700.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 (3071, '2023-12-04', 1040, 7022, 954, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3072, '2023-12-04', 1111, 7023, 954, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3073, '2023-12-04', 1000, 7027, 955, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (3074, '2023-12-04', 948, 7028, 955, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3075, '2023-12-04', 1059, 7029, 955, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3076, '2023-12-04', 1111, 7030, 955, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3077, '2023-12-04', 1064, 7031, 956, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (3078, '2023-12-04', 1074, 7032, 956, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3079, '2023-12-04', 1085, 7033, 957, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (3080, '2023-12-05', 1051, 7207, 960, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3081, '2023-12-05', 1053, 7208, 960, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3082, '2023-12-05', 859, 7209, 960, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3083, '2023-12-05', 868, 7210, 960, NULL, '2.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3084, '2023-12-05', 898, 7211, 960, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3085, '2023-12-05', 931, 7212, 960, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (3086, '2023-12-05', 932, 7213, 960, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3087, '2023-12-05', 942, 7214, 960, NULL, '2.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (3088, '2023-12-05', 947, 7215, 960, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3089, '2023-12-05', 913, 7216, 960, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3090, '2023-12-05', 867, 7217, 960, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3091, '2023-12-05', 1059, 7218, 960, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3092, '2023-12-05', 860, 7219, 960, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3093, '2023-12-05', 891, 7220, 960, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3094, '2023-12-05', 1054, 7221, 960, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3095, '2023-12-05', 1087, 7222, 960, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (3096, '2023-12-05', 865, 7223, 960, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3097, '2023-12-05', 949, 7232, 961, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3098, '2023-12-05', 892, 7233, 961, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3099, '2023-12-05', 856, 7234, 961, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (3100, '2023-12-05', 884, 7235, 961, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3101, '2023-12-05', 1086, 7236, 961, NULL, '1.0000', '3500.0000', '3500.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 (3102, '2023-12-05', 1082, 7237, 961, NULL, '1.0000', '3500.0000', '3500.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 (3103, '2023-12-05', 1089, 7238, 961, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (3104, '2023-12-05', 1059, 7239, 961, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3105, '2023-12-05', 936, 7240, 962, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3106, '2023-12-05', 858, 7241, 962, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3107, '2023-12-05', 889, 7242, 962, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3108, '2023-12-05', 960, 7243, 962, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (3109, '2023-12-05', 1111, 7244, 962, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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, '2023-12-05', 956, 7262, 964, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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, '2023-12-05', 860, 7263, 964, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3112, '2023-12-05', 1059, 7264, 964, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3113, '2023-12-05', 1042, 7265, 964, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3114, '2023-12-05', 1123, 7266, 964, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3115, '2023-12-05', 990, 7267, 964, NULL, '1.0000', '6300.0000', '6300.0000', '6500.0000', '6500.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 (3116, '2023-12-05', 860, 7268, 965, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3117, '2023-12-05', 1046, 7536, 969, NULL, '1.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (3118, '2023-12-05', 1144, 7537, 969, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (3119, '2023-12-05', 1059, 7563, 970, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3120, '2023-12-05', 1058, 7611, 972, NULL, '1.0000', '2000.0000', '2000.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 (3121, '2023-12-05', 867, 7612, 972, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3122, '2023-12-05', 1059, 7613, 972, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3144, '2023-12-05', 1046, 7635, 974, NULL, '2.0000', '1800.0000', '1800.0000', '1800.0000', '1800.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 (3145, '2023-12-05', 1035, 7636, 974, 395, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '14.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3146, '2023-12-05', 1058, 7637, 975, NULL, '1.0000', '2000.0000', '2000.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 (3147, '2023-12-06', 884, 7652, 977, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3148, '2023-12-06', 892, 7653, 977, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3149, '2023-12-06', 949, 7654, 977, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3150, '2023-12-06', 1089, 7655, 977, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (3151, '2023-12-06', 1086, 7656, 977, NULL, '1.0000', '3500.0000', '3500.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 (3152, '2023-12-06', 1134, 7657, 977, 368, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.0000', '19.0000', 1, 0, NULL, 5, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_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, '2023-12-06', 880, 7658, 978, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3154, '2023-12-06', 881, 7659, 978, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3155, '2023-12-06', 1111, 7660, 978, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3156, '2023-12-06', 936, 7663, 980, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3157, '2023-12-06', 1059, 7664, 980, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3158, '2023-12-06', 1059, 7667, 982, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3159, '2023-12-06', 856, 7668, 982, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (3168, '2023-12-06', 863, 7916, 987, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3169, '2023-12-06', 868, 7917, 987, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3170, '2023-12-06', 1043, 7918, 987, 396, '1.0000', '1800.0000', '1800.0000', '1800.0000', '1800.0000', '11.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3171, '2023-12-06', 1077, 7919, 987, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (3172, '2023-12-06', 1132, 7920, 987, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3173, '2023-12-07', 956, 7965, 989, NULL, '2.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (3174, '2023-12-07', 1074, 7966, 989, NULL, '3.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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, '2023-12-07', 1061, 7967, 989, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (3176, '2023-12-07', 1089, 7968, 989, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (3177, '2023-12-07', 1078, 7969, 989, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (3178, '2023-12-07', 990, 7970, 989, NULL, '1.0000', '6300.0000', '6300.0000', '6500.0000', '6500.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 (3179, '2023-12-07', 1076, 7971, 989, NULL, '2.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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, '2023-12-07', 859, 7972, 989, NULL, '3.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3181, '2023-12-07', 1052, 7973, 989, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3182, '2023-12-07', 1035, 7974, 989, 395, '3.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '11.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3183, '2023-12-07', 1049, 7975, 989, 357, '1.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '151.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3184, '2023-12-07', 1003, 7976, 989, NULL, '1.0000', '8000.0000', '8000.0000', '8000.0000', '8000.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, '2023-12-07', 1075, 7977, 989, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3186, '2023-12-07', 1058, 7978, 989, NULL, '3.0000', '2000.0000', '2000.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 (3187, '2023-12-07', 1016, 7979, 989, NULL, '1.0000', '2000.0000', '2000.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 (3188, '2023-12-07', 1072, 7980, 989, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (3189, '2023-12-07', 1002, 7981, 989, NULL, '1.0000', '9000.0000', '9000.0000', '9000.0000', '9000.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 (3190, '2023-12-07', 1059, 7982, 989, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3191, '2023-12-07', 856, 7983, 989, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (3192, '2023-12-07', 1054, 7984, 990, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3193, '2023-12-07', 1057, 7985, 990, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (3194, '2023-12-07', 1051, 7986, 990, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3195, '2023-12-07', 976, 7987, 990, NULL, '1.0000', '99000.0000', '99000.0000', '45000.0000', '45000.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 (3196, '2023-12-07', 937, 7988, 990, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3197, '2023-12-07', 1049, 7989, 990, 357, '1.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '150.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3198, '2023-12-07', 948, 7997, 991, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3199, '2023-12-07', 950, 7998, 991, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3200, '2023-12-07', 946, 7999, 991, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3201, '2023-12-07', 917, 8000, 991, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3202, '2023-12-07', 860, 8001, 991, NULL, '4.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3203, '2023-12-07', 915, 8002, 991, NULL, '3.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3204, '2023-12-07', 1111, 8003, 991, NULL, '12.0000', '500.0000', '500.0000', '500.0000', '500.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 (3205, '2023-12-07', 1094, 8004, 992, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3206, '2023-12-07', 1089, 8013, 994, NULL, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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, '2023-12-07', 865, 8014, 994, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3208, '2023-12-07', 917, 8015, 994, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3209, '2023-12-07', 1059, 8016, 994, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3214, '2023-12-07', 885, 8055, 998, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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, '2023-12-07', 890, 8056, 998, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3216, '2023-12-07', 959, 8057, 998, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (3217, '2023-12-07', 931, 8058, 998, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (3218, '2023-12-07', 905, 8059, 998, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3219, '2023-12-07', 1086, 8060, 998, NULL, '1.0000', '3500.0000', '3500.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 (3220, '2023-12-07', 953, 8061, 999, NULL, '1.0000', '13000.0000', '13000.0000', '20000.0000', '20000.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 (3221, '2023-12-07', 865, 8062, 999, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3222, '2023-12-07', 1059, 8063, 999, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3223, '2023-12-07', 956, 8067, 1001, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (3224, '2023-12-07', 1076, 8068, 1001, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (3225, '2023-12-07', 1090, 8069, 1001, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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, '2023-12-07', 1059, 8070, 1001, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3227, '2023-12-07', 1111, 8071, 1001, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3228, '2023-12-07', 1059, 8079, 1003, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3229, '2023-12-07', 1054, 8080, 1003, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3230, '2023-12-07', 1090, 8083, 1005, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3231, '2023-12-07', 1081, 8084, 1005, NULL, '1.0000', '3500.0000', '3500.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 (3232, '2023-12-07', 953, 8085, 1005, NULL, '2.0000', '13000.0000', '13000.0000', '15000.0000', '15000.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 (3233, '2023-12-07', 885, 8086, 1005, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3235, '2023-12-07', 1126, 8088, 1007, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (3236, '2023-12-07', 957, 8089, 1007, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (3250, '2023-12-08', 913, 8118, 1017, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3251, '2023-12-08', 1035, 8119, 1017, 395, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '9.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3252, '2023-12-08', 917, 8120, 1017, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3253, '2023-12-08', 926, 8121, 1017, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3254, '2023-12-08', 1080, 8122, 1017, NULL, '1.0000', '3500.0000', '3500.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 (3255, '2023-12-08', 865, 8123, 1017, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3256, '2023-12-08', 1111, 8124, 1017, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3257, '2023-12-08', 1111, 8132, 1019, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3258, '2023-12-08', 936, 8133, 1019, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3259, '2023-12-08', 893, 8143, 1022, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3260, '2023-12-08', 860, 8144, 1022, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3261, '2023-12-08', 917, 8145, 1022, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3262, '2023-12-08', 1035, 8146, 1022, 395, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '9.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3263, '2023-12-08', 1086, 8147, 1022, NULL, '1.0000', '3500.0000', '3500.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 (3264, '2023-12-08', 1111, 8148, 1022, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3271, '2023-12-08', 948, 8169, 1020, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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, '2023-12-08', 990, 8170, 1020, NULL, '1.0000', '6300.0000', '6300.0000', '6500.0000', '6500.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 (3273, '2023-12-08', 1074, 8171, 1020, NULL, '5.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3274, '2023-12-08', 859, 8186, 1026, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3275, '2023-12-08', 1111, 8187, 1026, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3276, '2023-12-08', 1090, 8188, 1026, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3277, '2023-12-08', 1060, 8249, 1027, NULL, '2.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (3278, '2023-12-08', 1059, 8250, 1027, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3279, '2023-12-08', 948, 8251, 1027, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3280, '2023-12-08', 1132, 8252, 1027, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3281, '2023-12-08', 1029, 8253, 1027, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3287, '2023-12-08', 1145, 8268, 1028, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (3288, '2023-12-08', 1058, 8269, 1028, NULL, '1.0000', '2000.0000', '2000.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 (3289, '2023-12-08', 938, 8125, 1018, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3290, '2023-12-08', 953, 8126, 1018, NULL, '1.0000', '13000.0000', '13000.0000', '20000.0000', '20000.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 (3291, '2023-12-08', 901, 8127, 1018, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3292, '2023-12-08', 867, 8128, 1018, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3293, '2023-12-08', 1086, 8129, 1018, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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, '2023-12-08', 1085, 8130, 1018, NULL, '1.0000', '3500.0000', '3500.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 (3295, '2023-12-08', 884, 8131, 1018, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3296, '2023-12-08', 860, 8254, 1024, NULL, '3.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3297, '2023-12-08', 1097, 8255, 1024, NULL, '5.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3298, '2023-12-08', 859, 8256, 1024, NULL, '5.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3299, '2023-12-08', 1078, 8257, 1024, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (3300, '2023-12-08', 941, 8258, 1024, NULL, '1.0000', '6900.0000', '6900.0000', '4500.0000', '4500.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 (3301, '2023-12-08', 948, 8259, 1024, NULL, '3.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3302, '2023-12-08', 1074, 8260, 1024, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3303, '2023-12-08', 1058, 8261, 1024, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (3304, '2023-12-08', 1079, 8262, 1024, NULL, '1.0000', '2000.0000', '2000.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 (3305, '2023-12-08', 1006, 8263, 1024, NULL, '1.0000', '6300.0000', '6300.0000', '6300.0000', '6300.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 (3306, '2023-12-08', 1002, 8264, 1024, NULL, '1.0000', '9000.0000', '9000.0000', '9000.0000', '9000.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 (3307, '2023-12-08', 1094, 8265, 1024, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3308, '2023-12-08', 1023, 8266, 1024, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3309, '2023-12-08', 1035, 8267, 1024, 395, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '7.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3311, '2023-12-09', 1051, 8271, 1029, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3312, '2023-12-09', 884, 8277, 1030, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3313, '2023-12-09', 919, 8278, 1030, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3314, '2023-12-09', 856, 8279, 1030, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (3315, '2023-12-09', 1111, 8280, 1030, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3316, '2023-12-09', 872, 8292, 1032, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3317, '2023-12-09', 861, 8293, 1032, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3318, '2023-12-09', 1074, 8294, 1032, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3319, '2023-12-09', 937, 8295, 1032, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3320, '2023-12-09', 1035, 8296, 1032, 395, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3321, '2023-12-09', 964, 8297, 1033, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3322, '2023-12-09', 1048, 8298, 1033, 363, '1.0000', '3381.8182', '3381.8182', '3000.0000', '3000.0000', '5.0000', 1, 0, NULL, 3, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_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, '2023-12-09', 1153, 8299, 1034, NULL, '1.0000', '7500.0000', '7500.0000', '7500.0000', '7500.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 (3324, '2023-12-09', 1059, 8300, 1035, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3325, '2023-12-09', 906, 8318, 1038, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3326, '2023-12-09', 859, 8319, 1038, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3327, '2023-12-09', 858, 8320, 1038, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3328, '2023-12-09', 1111, 8321, 1038, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3329, '2023-12-09', 912, 8322, 1036, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3330, '2023-12-09', 917, 8323, 1036, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3331, '2023-12-09', 865, 8324, 1036, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3332, '2023-12-09', 868, 8325, 1036, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3333, '2023-12-09', 1096, 8326, 1036, NULL, '4.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (3334, '2023-12-09', 1051, 8327, 1036, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3335, '2023-12-09', 948, 8340, 1041, NULL, '2.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3336, '2023-12-09', 950, 8341, 1041, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3337, '2023-12-09', 865, 8342, 1041, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3338, '2023-12-09', 1059, 8343, 1041, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3339, '2023-12-09', 885, 8359, 1042, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3340, '2023-12-09', 932, 8360, 1042, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3341, '2023-12-09', 956, 8361, 1042, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (3342, '2023-12-09', 1074, 8362, 1042, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3343, '2023-12-09', 1076, 8363, 1042, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (3344, '2023-12-09', 1094, 8364, 1042, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3345, '2023-12-09', 1059, 8365, 1042, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3346, '2023-12-09', 941, 8378, 1044, NULL, '1.0000', '6900.0000', '6900.0000', '4500.0000', '4500.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 (3347, '2023-12-09', 867, 8379, 1044, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3348, '2023-12-09', 901, 8380, 1044, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3349, '2023-12-09', 866, 8381, 1044, NULL, '1.0000', '2000.0000', '2000.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 (3350, '2023-12-09', 1090, 8382, 1044, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3351, '2023-12-09', 1082, 8383, 1044, NULL, '1.0000', '3500.0000', '3500.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 (3352, '2023-12-09', 1111, 8384, 1044, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3389, '2023-12-09', 933, 8418, 1049, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3390, '2023-12-09', 1081, 8419, 1049, NULL, '1.0000', '3500.0000', '3500.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 (3391, '2023-12-09', 893, 8420, 1049, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3392, '2023-12-09', 865, 8421, 1049, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3393, '2023-12-09', 1086, 8422, 1049, NULL, '1.0000', '3500.0000', '3500.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 (3394, '2023-12-09', 1080, 8423, 1049, NULL, '4.0000', '3500.0000', '3500.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 (3395, '2023-12-09', 1088, 8424, 1049, NULL, '1.0000', '3500.0000', '3500.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 (3396, '2023-12-09', 1111, 8425, 1049, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3397, '2023-12-09', 1035, 8426, 1048, 395, '2.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3398, '2023-12-09', 898, 8427, 1048, NULL, '1.0000', '9900.0000', '9900.0000', '8900.0000', '8900.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 (3399, '2023-12-09', 866, 8428, 1048, NULL, '1.0000', '2000.0000', '2000.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 (3403, '2023-12-10', 1090, 8552, 1052, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3404, '2023-12-10', 1089, 8553, 1052, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (3405, '2023-12-10', 1077, 8554, 1052, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (3406, '2023-12-10', 1049, 8555, 1052, 357, '1.0000', '4700.0000', '4700.0000', '4500.0000', '4500.0000', '149.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_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, '2023-12-10', 1035, 8556, 1052, 395, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.0000', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3408, '2023-12-10', 906, 8557, 1052, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3409, '2023-12-10', 863, 8558, 1052, NULL, '2.0000', '9900.0000', '9900.0000', '6900.0000', '6900.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 (3410, '2023-12-10', 866, 8559, 1052, NULL, '1.0000', '2000.0000', '2000.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 (3411, '2023-12-10', 912, 8560, 1052, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3412, '2023-12-10', 918, 8561, 1052, NULL, '3.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3413, '2023-12-10', 867, 8562, 1052, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3414, '2023-12-10', 865, 8563, 1052, NULL, '4.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3415, '2023-12-10', 1114, 8564, 1052, NULL, '6.0000', '500.0000', '500.0000', '500.0000', '500.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 (3416, '2023-12-10', 1059, 8565, 1052, NULL, '5.0000', '500.0000', '500.0000', '500.0000', '500.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 (3417, '2023-12-10', 917, 8566, 1052, NULL, '2.0000', '8900.0000', '8900.0000', '7900.0000', '7900.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 (3418, '2023-12-10', 892, 8567, 1053, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3419, '2023-12-10', 1111, 8568, 1053, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3420, '2023-12-10', 856, 8569, 1054, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (3421, '2023-12-10', 858, 8570, 1054, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3422, '2023-12-10', 867, 8571, 1054, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3423, '2023-12-10', 868, 8576, 1056, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3424, '2023-12-10', 886, 8577, 1056, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3425, '2023-12-10', 918, 8578, 1056, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3426, '2023-12-10', 1111, 8579, 1056, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3427, '2023-12-10', 950, 8585, 1058, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3428, '2023-12-10', 856, 8586, 1058, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (3429, '2023-12-10', 958, 8587, 1058, NULL, '1.0000', '5500.0000', '5500.0000', '5500.0000', '5500.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 (3430, '2023-12-10', 1076, 8588, 1058, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (3431, '2023-12-10', 1077, 8589, 1058, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (3432, '2023-12-10', 918, 8590, 1058, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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, '2023-12-10', 1086, 8591, 1058, NULL, '1.0000', '3500.0000', '3500.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 (3434, '2023-12-10', 1111, 8592, 1058, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3437, '2023-12-10', 866, 8595, 1060, NULL, '1.0000', '2000.0000', '2000.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 (3438, '2023-12-10', 856, 8612, 1063, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (3439, '2023-12-10', 861, 8613, 1063, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3440, '2023-12-10', 1051, 8614, 1063, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3441, '2023-12-10', 1075, 8615, 1063, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3442, '2023-12-10', 957, 8616, 1064, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (3443, '2023-12-10', 1132, 8617, 1064, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3444, '2023-12-10', 1126, 8618, 1064, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (3445, '2023-12-10', 860, 8619, 1064, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3446, '2023-12-10', 1059, 8620, 1064, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3447, '2023-12-10', 1058, 8621, 1065, NULL, '2.0000', '2000.0000', '2000.0000', '2000.0000', '2000.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 (3448, '2023-12-10', 996, 8641, 1068, NULL, '1.0000', '7000.0000', '7000.0000', '7000.0000', '7000.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 (3449, '2023-12-10', 1059, 8642, 1068, NULL, '5.0000', '500.0000', '500.0000', '500.0000', '500.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 (3450, '2023-12-10', 956, 8643, 1068, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (3451, '2023-12-10', 953, 8644, 1069, NULL, '1.0000', '13000.0000', '13000.0000', '20000.0000', '20000.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 (3452, '2023-12-10', 1089, 8645, 1069, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (3453, '2023-12-10', 986, 8646, 1069, NULL, '1.0000', '8000.0000', '8000.0000', '8000.0000', '8000.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 (3454, '2023-12-10', 1059, 8647, 1069, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3455, '2023-12-10', 916, 8648, 1070, NULL, '2.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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, '2023-12-11', 949, 8726, 1072, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3457, '2023-12-11', 918, 8727, 1072, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3458, '2023-12-11', 933, 8728, 1072, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3459, '2023-12-11', 866, 8729, 1072, NULL, '4.0000', '2000.0000', '2000.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 (3460, '2023-12-11', 1075, 8730, 1072, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3461, '2023-12-11', 1076, 8731, 1072, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (3462, '2023-12-11', 1086, 8732, 1072, NULL, '2.0000', '3500.0000', '3500.0000', '2000.0000', '2000.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 (3463, '2023-12-11', 1059, 8733, 1072, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3464, '2023-12-11', 932, 8734, 1072, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3465, '2023-12-11', 893, 8735, 1072, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3466, '2023-12-11', 865, 8736, 1072, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3467, '2023-12-11', 1111, 8737, 1072, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3480, '2023-12-11', 908, 8749, 1074, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3481, '2023-12-11', 865, 8750, 1074, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3482, '2023-12-11', 1015, 8751, 1074, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3483, '2023-12-11', 1053, 8752, 1074, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3484, '2023-12-11', 859, 8753, 1074, NULL, '3.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3485, '2023-12-11', 1111, 8754, 1074, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3486, '2023-12-11', 1071, 8755, 1074, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (3496, '2023-12-11', 933, 8773, 1077, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3497, '2023-12-11', 865, 8774, 1077, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3498, '2023-12-11', 859, 8775, 1077, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3499, '2023-12-11', 893, 8776, 1077, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3500, '2023-12-11', 908, 8777, 1077, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3501, '2023-12-11', 1089, 8778, 1077, NULL, '1.0000', '2500.0000', '2500.0000', '2500.0000', '2500.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 (3502, '2023-12-11', 1059, 8779, 1077, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3503, '2023-12-11', 1051, 8780, 1077, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3504, '2023-12-11', 1086, 8781, 1077, NULL, '1.0000', '3500.0000', '3500.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 (3505, '2023-12-11', 996, 8784, 1079, NULL, '1.0000', '7000.0000', '7000.0000', '10000.0000', '10000.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 (3506, '2023-12-11', 856, 8785, 1080, NULL, '1.0000', '8090.9091', '8900.0000', '8090.9100', '8900.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 (3507, '2023-12-11', 1059, 8786, 1080, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3508, '2023-12-11', 1155, 8787, 1081, NULL, '1.0000', '5900.0000', '5900.0000', '5900.0000', '5900.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 (3509, '2023-12-11', 1156, 8788, 1081, NULL, '1.0000', '5900.0000', '5900.0000', '5900.0000', '5900.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 (3510, '2023-12-11', 865, 8789, 1081, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3511, '2023-12-11', 1086, 8790, 1081, NULL, '1.0000', '3500.0000', '3500.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 (3512, '2023-12-11', 1126, 8793, 1083, NULL, '1.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (3513, '2023-12-11', 1082, 8794, 1083, NULL, '1.0000', '3500.0000', '3500.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 (3516, '2023-12-11', 1042, 8800, 1086, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3518, '2023-12-11', 931, 8826, 1088, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (3519, '2023-12-11', 865, 8827, 1088, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3520, '2023-12-11', 1075, 8828, 1088, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3521, '2023-12-11', 1029, 8829, 1088, NULL, '12.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3522, '2023-12-11', 1059, 8830, 1088, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3527, '2023-12-11', 860, 8846, 1092, NULL, '2.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3528, '2023-12-11', 946, 8847, 1092, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3529, '2023-12-11', 1059, 8848, 1092, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3530, '2023-12-11', 1003, 8849, 1092, NULL, '1.0000', '8000.0000', '8000.0000', '9000.0000', '9000.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 (3536, '2023-12-11', 1062, 8875, 1094, NULL, '1.0000', '3500.0000', '3500.0000', '3500.0000', '3500.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 (3537, '2023-12-11', 1072, 8876, 1094, NULL, '1.0000', '4000.0000', '4000.0000', '4000.0000', '4000.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 (3538, '2023-12-11', 947, 8877, 1094, NULL, '1.0000', '6900.0000', '6900.0000', '6900.0000', '6900.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 (3539, '2023-12-11', 956, 8878, 1094, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (3540, '2023-12-11', 1157, 8879, 1094, NULL, '1.0000', '6500.0000', '6500.0000', '6500.0000', '6500.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 (3541, '2023-12-11', 1059, 8880, 1094, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3542, '2023-12-11', 1111, 8881, 1094, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3543, '2023-12-11', 956, 8886, 1095, NULL, '1.0000', '15000.0000', '15000.0000', '15000.0000', '15000.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 (3544, '2023-12-11', 1117, 8887, 1095, NULL, '1.0000', '2000.0000', '2000.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 (3545, '2023-12-11', 1126, 8888, 1095, NULL, '2.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (3546, '2023-12-11', 957, 8889, 1095, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (3547, '2023-12-11', 1059, 8890, 1096, NULL, '4.0000', '500.0000', '500.0000', '500.0000', '500.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 (3548, '2023-12-12', 864, 8904, 1098, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3549, '2023-12-12', 911, 8905, 1098, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3550, '2023-12-12', 920, 8906, 1098, NULL, '1.0000', '10400.0000', '10400.0000', '10400.0000', '10400.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 (3551, '2023-12-12', 931, 8907, 1098, NULL, '1.0000', '10200.0000', '10200.0000', '10200.0000', '10200.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 (3552, '2023-12-12', 1092, 8908, 1098, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (3553, '2023-12-12', 1090, 8909, 1098, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3554, '2023-12-12', 1111, 8910, 1098, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3555, '2023-12-12', 942, 8928, 1100, NULL, '1.0000', '8900.0000', '8900.0000', '5500.0000', '5500.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 (3556, '2023-12-12', 918, 8929, 1100, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3557, '2023-12-12', 865, 8930, 1100, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3558, '2023-12-12', 867, 8931, 1100, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3559, '2023-12-12', 1051, 8932, 1100, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3560, '2023-12-12', 1086, 8933, 1100, NULL, '1.0000', '3500.0000', '3500.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 (3561, '2023-12-12', 1059, 8934, 1100, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3562, '2023-12-12', 918, 8939, 1102, NULL, '3.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3563, '2023-12-12', 865, 8940, 1102, NULL, '3.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3564, '2023-12-12', 1059, 8941, 1102, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3565, '2023-12-12', 1077, 8942, 1102, NULL, '1.0000', '5000.0000', '5000.0000', '5000.0000', '5000.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 (3566, '2023-12-12', 932, 8957, 1104, NULL, '1.0000', '7900.0000', '7900.0000', '7900.0000', '7900.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 (3567, '2023-12-12', 860, 8958, 1104, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3568, '2023-12-12', 954, 8959, 1104, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3569, '2023-12-12', 865, 8960, 1104, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3570, '2023-12-12', 1111, 8961, 1104, NULL, '3.0000', '500.0000', '500.0000', '500.0000', '500.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 (3571, '2023-12-12', 1115, 8962, 1104, 359, '1.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '123.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3572, '2023-12-12', 1111, 8966, 1106, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3573, '2023-12-12', 871, 8967, 1106, NULL, '1.0000', '10400.0000', '10400.0000', '10400.0000', '10400.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 (3574, '2023-12-12', 946, 8968, 1106, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3577, '2023-12-12', 885, 8997, 1110, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3578, '2023-12-12', 959, 8998, 1110, NULL, '5.0000', '4500.0000', '4500.0000', '4500.0000', '4500.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 (3579, '2023-12-12', 1074, 8999, 1111, NULL, '1.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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 (3594, '2023-12-12', 867, 9074, 1114, NULL, '1.0000', '8900.0000', '8900.0000', '8900.0000', '8900.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 (3595, '2023-12-12', 918, 9075, 1114, NULL, '1.0000', '9900.0000', '9900.0000', '9900.0000', '9900.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 (3596, '2023-12-12', 1015, 9076, 1114, NULL, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3597, '2023-12-12', 1054, 9077, 1114, NULL, '2.0000', '500.0000', '500.0000', '500.0000', '500.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 (3598, '2023-12-12', 957, 9078, 1114, NULL, '1.0000', '10000.0000', '10000.0000', '10000.0000', '10000.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 (3599, '2023-12-12', 1115, 9079, 1114, 359, '1.0000', '5575.8621', '5575.8621', '5500.0000', '5500.0000', '122.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_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, '2023-12-12', 865, 9080, 1114, NULL, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.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 (3601, '2023-12-12', 1159, 9081, 1114, NULL, '1.0000', '500.0000', '500.0000', '500.0000', '500.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 (3602, '2023-12-12', 1097, 9082, 1114, NULL, '2.0000', '3000.0000', '3000.0000', '3000.0000', '3000.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=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_currencies` (`id`, `code`, `name`, `rate`, `auto_update`, `symbol`) VALUES (3, 'NGN', 'Nigerian Naira', '1050.0000', 0, '₦');


#
# TABLE STRUCTURE FOR: sma_customer_groups
#

DROP TABLE IF EXISTS `sma_customer_groups`;

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

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


#
# TABLE STRUCTURE FOR: sma_date_format
#

DROP TABLE IF EXISTS `sma_date_format`;

CREATE TABLE `sma_date_format` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `js` varchar(20) NOT NULL,
  `php` varchar(20) NOT NULL,
  `sql` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

#
# 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=utf8mb3 COLLATE=utf8mb3_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=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_expense_categories` (`id`, `code`, `name`) VALUES (1, 'Drinks', 'Drinks Expense');


#
# 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=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_expenses` (`id`, `date`, `reference`, `amount`, `note`, `created_by`, `attachment`, `category_id`, `warehouse_id`) VALUES (1, '2023-10-31 21:45:00', 'light', '90000.0000', '<p>light</p>', '2', '0', 1, 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=utf8mb3 COLLATE=utf8mb3_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=utf8mb3 COLLATE=utf8mb3_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=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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 (6, 'cashier', 'cashier');


#
# 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=116 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_login_attempts` (`id`, `ip_address`, `login`, `time`) VALUES (112, '197.210.77.120', 'fatoom24', 1702375986);
INSERT INTO `sma_login_attempts` (`id`, `ip_address`, `login`, `time`) VALUES (113, '197.210.53.78', 'fatoom24', 1702376006);
INSERT INTO `sma_login_attempts` (`id`, `ip_address`, `login`, `time`) VALUES (114, '197.210.52.171', 'fatoom24', 1702376075);


#
# 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=1620 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"3\",\"date\":\"2023-10-15 19:07:24\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"21800.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"6\",\"suspend_id\":\"3\",\"product_id\":\"4\",\"product_code\":\"PR4\",\"product_name\":\"Fried rice with shrimps\\/chicken\\/mixed seafood\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"7\",\"suspend_id\":\"3\",\"product_id\":\"10\",\"product_code\":\"PR50\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-15 18:08:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"4\",\"date\":\"2023-10-15 19:07:47\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"7900.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"8\",\"suspend_id\":\"4\",\"product_id\":\"56\",\"product_code\":\"PR56\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-15 18:08:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"5\",\"date\":\"2023-10-18 19:34:56\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"11287.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Table7\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"9\",\"suspend_id\":\"5\",\"product_id\":\"13\",\"product_code\":\"PR48\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"10\",\"suspend_id\":\"5\",\"product_id\":\"8\",\"product_code\":\"PR51\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-18 19:24:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"7\",\"date\":\"2023-10-18 19:55:13\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"23327.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Table8\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"13\",\"suspend_id\":\"7\",\"product_id\":\"60\",\"product_code\":\"PR60\",\"product_name\":\"Fried spring rolls (stuffed with chicken\\/shrimp\\/vegetables\\/cheese)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"14\",\"suspend_id\":\"7\",\"product_id\":\"4\",\"product_code\":\"PR4\",\"product_name\":\"Fried rice with shrimps\\/chicken\\/mixed seafood\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"15\",\"suspend_id\":\"7\",\"product_id\":\"52\",\"product_code\":\"PR30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-18 19:26:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (5, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"1\",\"date\":\"2023-10-15 18:39:25\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"24700.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Jqmes\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1\",\"suspend_id\":\"1\",\"product_id\":\"33\",\"product_code\":\"PR20\",\"product_name\":\"Chicken leg curry\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2\",\"suspend_id\":\"1\",\"product_id\":\"39\",\"product_code\":\"PR23\",\"product_name\":\"Chicken, tofu and seaweed in clear soup\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3\",\"suspend_id\":\"1\",\"product_id\":\"28\",\"product_code\":\"PR17\",\"product_name\":\"Green curry (chicken\\/beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-18 19:45:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (6, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"2\",\"date\":\"2023-10-18 20:05:36\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"20900.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"16\",\"suspend_id\":\"2\",\"product_id\":\"47\",\"product_code\":\"PR32\",\"product_name\":\"Seafood hot pan\",\"net_unit_price\":\"10900.0000\",\"unit_price\":\"10900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"17\",\"suspend_id\":\"2\",\"product_id\":\"43\",\"product_code\":\"PR34\",\"product_name\":\"Mixed set (small)\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-18 19:45:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (7, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"6\",\"date\":\"2023-10-18 19:36:39\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"5375.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"11\",\"suspend_id\":\"6\",\"product_id\":\"72\",\"product_code\":\"PR76\",\"product_name\":\"Ichitan yellow\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"12\",\"suspend_id\":\"6\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-18 19:46:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (8, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"75\",\"code\":\"PR80\",\"name\":\"Takeaway\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"10\",\"subcategory_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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"takeaway\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-18 20:39:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (9, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"8\",\"date\":\"2023-10-19 14:16:51\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"15\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"79872.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Table 3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"18\",\"suspend_id\":\"8\",\"product_id\":\"42\",\"product_code\":\"PR24\",\"product_name\":\"Tom Yum (shrimp\\/seafood) (clear soup\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"19\",\"suspend_id\":\"8\",\"product_id\":\"59\",\"product_code\":\"PR59\",\"product_name\":\"Spicy minced\\/chopped meat salad (beef\\/chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"20\",\"suspend_id\":\"8\",\"product_id\":\"7\",\"product_code\":\"PR6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"21\",\"suspend_id\":\"8\",\"product_id\":\"1\",\"product_code\":\"PR1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"22\",\"suspend_id\":\"8\",\"product_id\":\"4\",\"product_code\":\"PR4\",\"product_name\":\"Fried rice with shrimps\\/chicken\\/mixed seafood\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"23\",\"suspend_id\":\"8\",\"product_id\":\"56\",\"product_code\":\"PR56\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"24\",\"suspend_id\":\"8\",\"product_id\":\"77\",\"product_code\":\"PR79\",\"product_name\":\"Pad Thai (seafood,beef)\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"25\",\"suspend_id\":\"8\",\"product_id\":\"17\",\"product_code\":\"PR46\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"26\",\"suspend_id\":\"8\",\"product_id\":\"76\",\"product_code\":\"PR78\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 13:50:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (10, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"10\",\"date\":\"2023-10-19 18:49:11\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"13330.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Table 12\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"62\",\"suspend_id\":\"10\",\"product_id\":\"1\",\"product_code\":\"PR1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"63\",\"suspend_id\":\"10\",\"product_id\":\"13\",\"product_code\":\"PR48\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 18:19:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (11, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"16\",\"date\":\"2023-10-19 19:26:14\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"18\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"106425.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Takeaway1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"92\",\"suspend_id\":\"16\",\"product_id\":\"58\",\"product_code\":\"PR58\",\"product_name\":\"Spicy papaya salad (Thai style\\/fermented fish\\/mixed ingrediets)\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"93\",\"suspend_id\":\"16\",\"product_id\":\"42\",\"product_code\":\"PR24\",\"product_name\":\"Tom Yum (shrimp\\/seafood) (clear soup\\/creamy soup)\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"60000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"94\",\"suspend_id\":\"16\",\"product_id\":\"7\",\"product_code\":\"PR6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"95\",\"suspend_id\":\"16\",\"product_id\":\"76\",\"product_code\":\"PR78\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"9.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 18:40:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (12, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"9\",\"date\":\"2023-10-19 18:33:53\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"58\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"712510.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Table 1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"52\",\"suspend_id\":\"9\",\"product_id\":\"58\",\"product_code\":\"PR58\",\"product_name\":\"Spicy papaya salad (Thai style\\/fermented fish\\/mixed ingrediets)\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"53\",\"suspend_id\":\"9\",\"product_id\":\"9\",\"product_code\":\"PR7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"20.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"54\",\"suspend_id\":\"9\",\"product_id\":\"64\",\"product_code\":\"PR64\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"25000.0000\",\"unit_price\":\"25000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"125000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"25000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"55\",\"suspend_id\":\"9\",\"product_id\":\"60\",\"product_code\":\"PR60\",\"product_name\":\"Fried spring rolls (stuffed with chicken\\/shrimp\\/vegetables\\/cheese)\",\"net_unit_price\":\"26700.0000\",\"unit_price\":\"26700.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"106800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"26700.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"56\",\"suspend_id\":\"9\",\"product_id\":\"42\",\"product_code\":\"PR24\",\"product_name\":\"Tom Yum (shrimp\\/seafood) (clear soup\\/creamy soup)\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"57\",\"suspend_id\":\"9\",\"product_id\":\"77\",\"product_code\":\"PR79\",\"product_name\":\"Pad Thai (seafood,beef)\",\"net_unit_price\":\"36000.0000\",\"unit_price\":\"36000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"144000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"36000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"58\",\"suspend_id\":\"9\",\"product_id\":\"48\",\"product_code\":\"PR27\",\"product_name\":\"Stir-fried with holy basil (chicken\\/shrimp\\/beef\\/mixed meat) \",\"net_unit_price\":\"18000.0000\",\"unit_price\":\"18000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"90000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"18000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"59\",\"suspend_id\":\"9\",\"product_id\":\"154\",\"product_code\":\"PR157\",\"product_name\":\"Fried egg\",\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 18:47:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (13, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"14\",\"date\":\"2023-10-19 19:32:47\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"3762.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Table 6\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"120\",\"suspend_id\":\"14\",\"product_id\":\"129\",\"product_code\":\"PR131\",\"product_name\":\"Heineken\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"121\",\"suspend_id\":\"14\",\"product_id\":\"142\",\"product_code\":\"PR145\",\"product_name\":\"Maltina\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 18:53:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (14, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"18\",\"date\":\"2023-10-19 19:39:10\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"17092.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Table 9\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"151\",\"suspend_id\":\"18\",\"product_id\":\"164\",\"product_code\":\"PR167\",\"product_name\":\"Hero\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"152\",\"suspend_id\":\"18\",\"product_id\":\"136\",\"product_code\":\"PR139\",\"product_name\":\"Big Stout\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"153\",\"suspend_id\":\"18\",\"product_id\":\"142\",\"product_code\":\"PR145\",\"product_name\":\"Maltina\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"154\",\"suspend_id\":\"18\",\"product_id\":\"3\",\"product_code\":\"PR3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 19:26:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (15, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"17\",\"date\":\"2023-10-19 20:21:55\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"45257.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Table 12\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"265\",\"suspend_id\":\"17\",\"product_id\":\"1\",\"product_code\":\"PR1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"266\",\"suspend_id\":\"17\",\"product_id\":\"16\",\"product_code\":\"PR10\",\"product_name\":\"Stir-fried glass noodles (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"267\",\"suspend_id\":\"17\",\"product_id\":\"59\",\"product_code\":\"PR59\",\"product_name\":\"Spicy minced\\/chopped meat salad (beef\\/chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"268\",\"suspend_id\":\"17\",\"product_id\":\"76\",\"product_code\":\"PR78\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"269\",\"suspend_id\":\"17\",\"product_id\":\"62\",\"product_code\":\"PR62\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"270\",\"suspend_id\":\"17\",\"product_id\":\"142\",\"product_code\":\"PR145\",\"product_name\":\"Maltina\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"271\",\"suspend_id\":\"17\",\"product_id\":\"132\",\"product_code\":\"PR135\",\"product_name\":\"Star Raddler\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"272\",\"suspend_id\":\"17\",\"product_id\":\"147\",\"product_code\":\"PR150\",\"product_name\":\"Chivita Pack\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 19:29:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (16, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"13\",\"date\":\"2023-10-19 20:46:00\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"14942.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Table 10\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"323\",\"suspend_id\":\"13\",\"product_id\":\"129\",\"product_code\":\"PR131\",\"product_name\":\"Heineken\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"324\",\"suspend_id\":\"13\",\"product_id\":\"4\",\"product_code\":\"PR4\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 20:04:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (17, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"26\",\"date\":\"2023-10-19 21:09:03\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"6450.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"table10\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"368\",\"suspend_id\":\"26\",\"product_id\":\"129\",\"product_code\":\"PR131\",\"product_name\":\"Heineken\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 20:09:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (18, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"25\",\"date\":\"2023-10-19 21:03:32\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"32035.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Take away2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"349\",\"suspend_id\":\"25\",\"product_id\":\"69\",\"product_code\":\"PR69\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"350\",\"suspend_id\":\"25\",\"product_id\":\"5\",\"product_code\":\"PR5\",\"product_name\":\"Tom yum fried rice\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"351\",\"suspend_id\":\"25\",\"product_id\":\"16\",\"product_code\":\"PR10\",\"product_name\":\"Stir-fried glass noodles (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 20:10:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (19, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"11\",\"date\":\"2023-10-19 21:05:40\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"17\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"108037.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"VIP2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"352\",\"suspend_id\":\"11\",\"product_id\":\"58\",\"product_code\":\"PR58\",\"product_name\":\"Spicy papaya salad (Thai style\\/fermented fish\\/mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"353\",\"suspend_id\":\"11\",\"product_id\":\"10\",\"product_code\":\"PR50\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"354\",\"suspend_id\":\"11\",\"product_id\":\"47\",\"product_code\":\"PR32\",\"product_name\":\"Seafood hot pan\",\"net_unit_price\":\"10900.0000\",\"unit_price\":\"10900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"355\",\"suspend_id\":\"11\",\"product_id\":\"29\",\"product_code\":\"PR41\",\"product_name\":\"Chrysanthemum juice \",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"356\",\"suspend_id\":\"11\",\"product_id\":\"10\",\"product_code\":\"PR50\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"357\",\"suspend_id\":\"11\",\"product_id\":\"59\",\"product_code\":\"PR59\",\"product_name\":\"Spicy minced\\/chopped meat salad (beef\\/chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"358\",\"suspend_id\":\"11\",\"product_id\":\"56\",\"product_code\":\"PR56\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"359\",\"suspend_id\":\"11\",\"product_id\":\"3\",\"product_code\":\"PR3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"360\",\"suspend_id\":\"11\",\"product_id\":\"52\",\"product_code\":\"PR30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"361\",\"suspend_id\":\"11\",\"product_id\":\"5\",\"product_code\":\"PR5\",\"product_name\":\"Tom yum fried rice\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"362\",\"suspend_id\":\"11\",\"product_id\":\"77\",\"product_code\":\"PR79\",\"product_name\":\"Pad Thai (seafood,beef)\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"363\",\"suspend_id\":\"11\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"364\",\"suspend_id\":\"11\",\"product_id\":\"72\",\"product_code\":\"PR76\",\"product_name\":\"Ichitan yellow\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 20:12:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (20, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"27\",\"date\":\"2023-10-19 21:15:32\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"537.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Table10\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"373\",\"suspend_id\":\"27\",\"product_id\":\"76\",\"product_code\":\"PR78\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 20:15:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (21, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"20\",\"date\":\"2023-10-19 21:20:26\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"16662.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"table1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"374\",\"suspend_id\":\"20\",\"product_id\":\"8\",\"product_code\":\"PR51\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"375\",\"suspend_id\":\"20\",\"product_id\":\"12\",\"product_code\":\"PR49\",\"product_name\":\"Chang beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"376\",\"suspend_id\":\"20\",\"product_id\":\"10\",\"product_code\":\"PR50\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"377\",\"suspend_id\":\"20\",\"product_id\":\"135\",\"product_code\":\"PR138\",\"product_name\":\"Desperado\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 20:23:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (22, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"15\",\"date\":\"2023-10-19 21:29:03\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"48\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"185222.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Table 8\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"381\",\"suspend_id\":\"15\",\"product_id\":\"69\",\"product_code\":\"PR69\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"382\",\"suspend_id\":\"15\",\"product_id\":\"53\",\"product_code\":\"PR53\",\"product_name\":\"Sweet and sour stir fry\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"383\",\"suspend_id\":\"15\",\"product_id\":\"42\",\"product_code\":\"PR24\",\"product_name\":\"Tom Yum (shrimp\\/seafood) (clear soup\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"384\",\"suspend_id\":\"15\",\"product_id\":\"48\",\"product_code\":\"PR27\",\"product_name\":\"Stir-fried with holy basil (chicken\\/shrimp\\/beef\\/mixed meat) \",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"385\",\"suspend_id\":\"15\",\"product_id\":\"22\",\"product_code\":\"PR13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"386\",\"suspend_id\":\"15\",\"product_id\":\"28\",\"product_code\":\"PR17\",\"product_name\":\"Green curry (chicken\\/beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"387\",\"suspend_id\":\"15\",\"product_id\":\"7\",\"product_code\":\"PR6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"11.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"388\",\"suspend_id\":\"15\",\"product_id\":\"56\",\"product_code\":\"PR56\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"389\",\"suspend_id\":\"15\",\"product_id\":\"17\",\"product_code\":\"PR46\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"390\",\"suspend_id\":\"15\",\"product_id\":\"72\",\"product_code\":\"PR76\",\"product_name\":\"Ichitan yellow\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"391\",\"suspend_id\":\"15\",\"product_id\":\"3\",\"product_code\":\"PR3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"23700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"392\",\"suspend_id\":\"15\",\"product_id\":\"42\",\"product_code\":\"PR24\",\"product_name\":\"Tom Yum (shrimp\\/seafood) (clear soup\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"393\",\"suspend_id\":\"15\",\"product_id\":\"44\",\"product_code\":\"PR25\",\"product_name\":\"Boiled chicken in fish sauce\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"394\",\"suspend_id\":\"15\",\"product_id\":\"13\",\"product_code\":\"PR48\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"395\",\"suspend_id\":\"15\",\"product_id\":\"33\",\"product_code\":\"PR20\",\"product_name\":\"Chicken leg curry\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"396\",\"suspend_id\":\"15\",\"product_id\":\"151\",\"product_code\":\"PR154\",\"product_name\":\"Fresh Juice Glass\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"397\",\"suspend_id\":\"15\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"398\",\"suspend_id\":\"15\",\"product_id\":\"142\",\"product_code\":\"PR145\",\"product_name\":\"Maltina\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"399\",\"suspend_id\":\"15\",\"product_id\":\"12\",\"product_code\":\"PR49\",\"product_name\":\"Chang beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"400\",\"suspend_id\":\"15\",\"product_id\":\"12\",\"product_code\":\"PR49\",\"product_name\":\"Chang beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 20:40:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (23, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"19\",\"date\":\"2023-10-19 20:22:34\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"12900.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Table 5\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"273\",\"suspend_id\":\"19\",\"product_id\":\"164\",\"product_code\":\"PR167\",\"product_name\":\"Hero\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"274\",\"suspend_id\":\"19\",\"product_id\":\"136\",\"product_code\":\"PR139\",\"product_name\":\"Big Stout\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"275\",\"suspend_id\":\"19\",\"product_id\":\"136\",\"product_code\":\"PR139\",\"product_name\":\"Big Stout\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 20:46:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (24, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"24\",\"date\":\"2023-10-19 21:01:09\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"16985.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"table6\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"329\",\"suspend_id\":\"24\",\"product_id\":\"4\",\"product_code\":\"PR4\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 20:47:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (25, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"23\",\"date\":\"2023-10-19 20:44:17\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"8492.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Table 11\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"322\",\"suspend_id\":\"23\",\"product_id\":\"3\",\"product_code\":\"PR3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 21:08:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (26, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"22\",\"date\":\"2023-10-19 20:24:26\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"6987.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"table4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"277\",\"suspend_id\":\"22\",\"product_id\":\"12\",\"product_code\":\"PR49\",\"product_name\":\"Chang beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"278\",\"suspend_id\":\"22\",\"product_id\":\"8\",\"product_code\":\"PR51\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 21:19:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (27, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"28\",\"date\":\"2023-10-19 21:28:31\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"9675.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"table1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"379\",\"suspend_id\":\"28\",\"product_id\":\"10\",\"product_code\":\"PR50\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"380\",\"suspend_id\":\"28\",\"product_id\":\"135\",\"product_code\":\"PR138\",\"product_name\":\"Desperado\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 21:20:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (28, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"21\",\"date\":\"2023-10-19 20:20:31\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"9567.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Take away1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"261\",\"suspend_id\":\"21\",\"product_id\":\"42\",\"product_code\":\"PR24\",\"product_name\":\"Tom Yum (shrimp\\/seafood) (clear soup\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 21:24:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (29, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"12\",\"date\":\"2023-10-19 21:45:08\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"30637.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"VIP1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"401\",\"suspend_id\":\"12\",\"product_id\":\"17\",\"product_code\":\"PR46\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"402\",\"suspend_id\":\"12\",\"product_id\":\"13\",\"product_code\":\"PR48\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"403\",\"suspend_id\":\"12\",\"product_id\":\"12\",\"product_code\":\"PR49\",\"product_name\":\"Chang beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"404\",\"suspend_id\":\"12\",\"product_id\":\"72\",\"product_code\":\"PR76\",\"product_name\":\"Ichitan yellow\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-19 21:34:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (30, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"30\",\"date\":\"2023-10-20 17:46:54\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"19\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"116315.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3 thomson\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"431\",\"suspend_id\":\"30\",\"product_id\":\"48\",\"product_code\":\"PR27\",\"product_name\":\"Stir-fried with holy basil (chicken\\/shrimp\\/beef\\/mixed meat) \",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"432\",\"suspend_id\":\"30\",\"product_id\":\"77\",\"product_code\":\"PR79\",\"product_name\":\"Pad Thai (seafood,beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"433\",\"suspend_id\":\"30\",\"product_id\":\"58\",\"product_code\":\"PR58\",\"product_name\":\"Spicy papaya salad (Thai style\\/fermented fish\\/mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"434\",\"suspend_id\":\"30\",\"product_id\":\"65\",\"product_code\":\"PR65\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"435\",\"suspend_id\":\"30\",\"product_id\":\"53\",\"product_code\":\"PR53\",\"product_name\":\"Sweet and sour stir fry\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"436\",\"suspend_id\":\"30\",\"product_id\":\"53\",\"product_code\":\"PR53\",\"product_name\":\"Sweet and sour stir fry\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"437\",\"suspend_id\":\"30\",\"product_id\":\"55\",\"product_code\":\"PR55\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"438\",\"suspend_id\":\"30\",\"product_id\":\"42\",\"product_code\":\"PR24\",\"product_name\":\"Tom Yum (shrimp\\/seafood) (clear soup\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"439\",\"suspend_id\":\"30\",\"product_id\":\"44\",\"product_code\":\"PR25\",\"product_name\":\"Boiled chicken in fish sauce\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"440\",\"suspend_id\":\"30\",\"product_id\":\"7\",\"product_code\":\"PR6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"441\",\"suspend_id\":\"30\",\"product_id\":\"17\",\"product_code\":\"PR46\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"442\",\"suspend_id\":\"30\",\"product_id\":\"13\",\"product_code\":\"PR48\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"443\",\"suspend_id\":\"30\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-20 16:50:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (31, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"31\",\"date\":\"2023-10-20 18:19:30\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"45150.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1 Thomson\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"444\",\"suspend_id\":\"31\",\"product_id\":\"48\",\"product_code\":\"PR27\",\"product_name\":\"Stir-fried with holy basil (chicken\\/shrimp\\/beef\\/mixed meat) \",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"445\",\"suspend_id\":\"31\",\"product_id\":\"7\",\"product_code\":\"PR6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"446\",\"suspend_id\":\"31\",\"product_id\":\"166\",\"product_code\":\"PR200\",\"product_name\":\"Nederburg\",\"net_unit_price\":\"16200.0000\",\"unit_price\":\"16200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16200.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"16200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"447\",\"suspend_id\":\"31\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"448\",\"suspend_id\":\"31\",\"product_id\":\"147\",\"product_code\":\"PR150\",\"product_name\":\"Chivita Pack\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-20 17:37:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (32, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"32\",\"date\":\"2023-10-20 18:36:12\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"6450.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Madam fon\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"449\",\"suspend_id\":\"32\",\"product_id\":\"10\",\"product_code\":\"PR50\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-20 17:38:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (33, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"33\",\"date\":\"2023-10-20 18:54:20\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"7417.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"450\",\"suspend_id\":\"33\",\"product_id\":\"58\",\"product_code\":\"PR58\",\"product_name\":\"Spicy papaya salad (Thai style\\/fermented fish\\/mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-20 17:54:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (34, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"29\",\"date\":\"2023-10-20 16:57:31\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"17\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"97180.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3 thomson\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"405\",\"suspend_id\":\"29\",\"product_id\":\"48\",\"product_code\":\"PR27\",\"product_name\":\"Stir-fried with holy basil (chicken\\/shrimp\\/beef\\/mixed meat) \",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"406\",\"suspend_id\":\"29\",\"product_id\":\"77\",\"product_code\":\"PR79\",\"product_name\":\"Pad Thai (seafood,beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"407\",\"suspend_id\":\"29\",\"product_id\":\"58\",\"product_code\":\"PR58\",\"product_name\":\"Spicy papaya salad (Thai style\\/fermented fish\\/mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"408\",\"suspend_id\":\"29\",\"product_id\":\"65\",\"product_code\":\"PR65\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"409\",\"suspend_id\":\"29\",\"product_id\":\"53\",\"product_code\":\"PR53\",\"product_name\":\"Sweet and sour stir fry\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"410\",\"suspend_id\":\"29\",\"product_id\":\"53\",\"product_code\":\"PR53\",\"product_name\":\"Sweet and sour stir fry\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"411\",\"suspend_id\":\"29\",\"product_id\":\"55\",\"product_code\":\"PR55\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"412\",\"suspend_id\":\"29\",\"product_id\":\"42\",\"product_code\":\"PR24\",\"product_name\":\"Tom Yum (shrimp\\/seafood) (clear soup\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"413\",\"suspend_id\":\"29\",\"product_id\":\"44\",\"product_code\":\"PR25\",\"product_name\":\"Boiled chicken in fish sauce\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"414\",\"suspend_id\":\"29\",\"product_id\":\"7\",\"product_code\":\"PR6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"415\",\"suspend_id\":\"29\",\"product_id\":\"17\",\"product_code\":\"PR46\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"416\",\"suspend_id\":\"29\",\"product_id\":\"13\",\"product_code\":\"PR48\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"417\",\"suspend_id\":\"29\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-20 21:13:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (35, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"36\",\"date\":\"2023-10-20 22:17:18\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"9567.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"t4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"460\",\"suspend_id\":\"36\",\"product_id\":\"59\",\"product_code\":\"PR59\",\"product_name\":\"Spicy minced\\/chopped meat salad (beef\\/chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-20 21:17:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (36, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"37\",\"date\":\"2023-10-20 22:32:30\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"10857.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"466\",\"suspend_id\":\"37\",\"product_id\":\"48\",\"product_code\":\"PR27\",\"product_name\":\"Stir-fried with holy basil (chicken\\/shrimp\\/beef\\/mixed meat) \",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"467\",\"suspend_id\":\"37\",\"product_id\":\"154\",\"product_code\":\"PR157\",\"product_name\":\"Fried egg\",\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"700.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"468\",\"suspend_id\":\"37\",\"product_id\":\"76\",\"product_code\":\"PR78\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-20 21:59:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (37, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"35\",\"date\":\"2023-10-20 22:58:59\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"30315.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"vip1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"477\",\"suspend_id\":\"35\",\"product_id\":\"1\",\"product_code\":\"PR1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"478\",\"suspend_id\":\"35\",\"product_id\":\"3\",\"product_code\":\"PR3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"479\",\"suspend_id\":\"35\",\"product_id\":\"60\",\"product_code\":\"PR60\",\"product_name\":\"Fried spring rolls (stuffed with chicken\\/shrimp\\/vegetables\\/cheese)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"480\",\"suspend_id\":\"35\",\"product_id\":\"13\",\"product_code\":\"PR48\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"481\",\"suspend_id\":\"35\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-20 22:01:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (38, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"34\",\"date\":\"2023-10-20 22:51:40\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"47730.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T15\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"473\",\"suspend_id\":\"34\",\"product_id\":\"4\",\"product_code\":\"PR4\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"474\",\"suspend_id\":\"34\",\"product_id\":\"167\",\"product_code\":\"PR201\",\"product_name\":\"MOJITO\",\"net_unit_price\":\"6000.0000\",\"unit_price\":\"6000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"475\",\"suspend_id\":\"34\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"476\",\"suspend_id\":\"34\",\"product_id\":\"168\",\"product_code\":\"PR202\",\"product_name\":\"LONG  ISLAND\",\"net_unit_price\":\"8000.0000\",\"unit_price\":\"8000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-20 22:39:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (39, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"38\",\"date\":\"2023-10-21 11:42:10\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"18060.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away  T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"482\",\"suspend_id\":\"38\",\"product_id\":\"58\",\"product_code\":\"PR58\",\"product_name\":\"Spicy papaya salad (Thai style\\/fermented fish\\/mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"483\",\"suspend_id\":\"38\",\"product_id\":\"51\",\"product_code\":\"PR29\",\"product_name\":\"Stir-fried chicken with ginger \",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"484\",\"suspend_id\":\"38\",\"product_id\":\"76\",\"product_code\":\"PR78\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-21 11:43:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (40, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"39\",\"date\":\"2023-10-21 12:01:06\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"62995.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"485\",\"suspend_id\":\"39\",\"product_id\":\"58\",\"product_code\":\"PR58\",\"product_name\":\"Spicy papaya salad (Thai style\\/fermented fish\\/mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"486\",\"suspend_id\":\"39\",\"product_id\":\"26\",\"product_code\":\"PR16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"487\",\"suspend_id\":\"39\",\"product_id\":\"171\",\"product_code\":\"PR170\",\"product_name\":\"Spicy beef soup\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"488\",\"suspend_id\":\"39\",\"product_id\":\"59\",\"product_code\":\"PR59\",\"product_name\":\"Spicy minced\\/chopped meat salad (beef\\/chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"489\",\"suspend_id\":\"39\",\"product_id\":\"68\",\"product_code\":\"PR68\",\"product_name\":\"Fried fish with three flavors sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"490\",\"suspend_id\":\"39\",\"product_id\":\"7\",\"product_code\":\"PR6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"491\",\"suspend_id\":\"39\",\"product_id\":\"9\",\"product_code\":\"PR7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"492\",\"suspend_id\":\"39\",\"product_id\":\"29\",\"product_code\":\"PR41\",\"product_name\":\"Chrysanthemum juice \",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"493\",\"suspend_id\":\"39\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-21 11:43:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (41, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"40\",\"date\":\"2023-10-21 15:46:19\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"18597.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"498\",\"suspend_id\":\"40\",\"product_id\":\"56\",\"product_code\":\"PR56\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"499\",\"suspend_id\":\"40\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"500\",\"suspend_id\":\"40\",\"product_id\":\"48\",\"product_code\":\"PR27\",\"product_name\":\"Stir-fried with holy basil (chicken\\/shrimp\\/beef\\/mixed meat) \",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-21 15:51:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (42, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"41\",\"date\":\"2023-10-21 17:41:31\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"19\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"84172.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"510\",\"suspend_id\":\"41\",\"product_id\":\"28\",\"product_code\":\"PR17\",\"product_name\":\"Green curry (chicken\\/beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"511\",\"suspend_id\":\"41\",\"product_id\":\"59\",\"product_code\":\"PR59\",\"product_name\":\"Spicy minced\\/chopped meat salad (beef\\/chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"512\",\"suspend_id\":\"41\",\"product_id\":\"58\",\"product_code\":\"PR58\",\"product_name\":\"Spicy papaya salad (Thai style\\/fermented fish\\/mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"513\",\"suspend_id\":\"41\",\"product_id\":\"66\",\"product_code\":\"PR66\",\"product_name\":\"Deep fried chicken rolls (8 pcs)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"514\",\"suspend_id\":\"41\",\"product_id\":\"62\",\"product_code\":\"PR62\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"515\",\"suspend_id\":\"41\",\"product_id\":\"48\",\"product_code\":\"PR27\",\"product_name\":\"Stir-fried with holy basil (chicken\\/shrimp\\/beef\\/mixed meat) \",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"516\",\"suspend_id\":\"41\",\"product_id\":\"15\",\"product_code\":\"PR47\",\"product_name\":\"Milk tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"517\",\"suspend_id\":\"41\",\"product_id\":\"7\",\"product_code\":\"PR6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"518\",\"suspend_id\":\"41\",\"product_id\":\"72\",\"product_code\":\"PR76\",\"product_name\":\"Ichitan yellow\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"519\",\"suspend_id\":\"41\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"520\",\"suspend_id\":\"41\",\"product_id\":\"178\",\"product_code\":\"PR216\",\"product_name\":\"STRAWBERRY JUICE\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-21 17:27:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (43, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"42\",\"date\":\"2023-10-21 18:28:49\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"9567.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"521\",\"suspend_id\":\"42\",\"product_id\":\"11\",\"product_code\":\"PR8\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-21 17:35:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (44, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"43\",\"date\":\"2023-10-22 12:08:47\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"49\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"198015.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"539\",\"suspend_id\":\"43\",\"product_id\":\"55\",\"product_code\":\"PR55\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"540\",\"suspend_id\":\"43\",\"product_id\":\"62\",\"product_code\":\"PR62\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"541\",\"suspend_id\":\"43\",\"product_id\":\"63\",\"product_code\":\"PR63\",\"product_name\":\"Fried squid\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"542\",\"suspend_id\":\"43\",\"product_id\":\"141\",\"product_code\":\"PR144\",\"product_name\":\"Fried rice with shrimps, seafood & beef\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"543\",\"suspend_id\":\"43\",\"product_id\":\"7\",\"product_code\":\"PR6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"544\",\"suspend_id\":\"43\",\"product_id\":\"9\",\"product_code\":\"PR7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"545\",\"suspend_id\":\"43\",\"product_id\":\"57\",\"product_code\":\"PR57\",\"product_name\":\"Spicy mixed seafood salad\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"546\",\"suspend_id\":\"43\",\"product_id\":\"58\",\"product_code\":\"PR58\",\"product_name\":\"Spicy papaya salad (Thai style\\/fermented fish\\/mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"547\",\"suspend_id\":\"43\",\"product_id\":\"59\",\"product_code\":\"PR59\",\"product_name\":\"Spicy minced\\/chopped meat salad (beef\\/chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"548\",\"suspend_id\":\"43\",\"product_id\":\"32\",\"product_code\":\"PR19\",\"product_name\":\"Panang curry (chicken\\/beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"549\",\"suspend_id\":\"43\",\"product_id\":\"35\",\"product_code\":\"PR21\",\"product_name\":\"Massaman Curry (chicken\\/beef\\/lamb)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"550\",\"suspend_id\":\"43\",\"product_id\":\"39\",\"product_code\":\"PR23\",\"product_name\":\"Chicken, tofu and seaweed in clear soup\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"551\",\"suspend_id\":\"43\",\"product_id\":\"42\",\"product_code\":\"PR24\",\"product_name\":\"Tom Yum (shrimp\\/seafood) (clear soup\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"552\",\"suspend_id\":\"43\",\"product_id\":\"46\",\"product_code\":\"PR26\",\"product_name\":\"Stewed eggs\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"553\",\"suspend_id\":\"43\",\"product_id\":\"40\",\"product_code\":\"PR36\",\"product_name\":\"Sago pearls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"554\",\"suspend_id\":\"43\",\"product_id\":\"37\",\"product_code\":\"PR37\",\"product_name\":\"Glutinous rice balls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"555\",\"suspend_id\":\"43\",\"product_id\":\"76\",\"product_code\":\"PR78\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"23.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"23.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"556\",\"suspend_id\":\"43\",\"product_id\":\"15\",\"product_code\":\"PR47\",\"product_name\":\"Milk tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"557\",\"suspend_id\":\"43\",\"product_id\":\"19\",\"product_code\":\"PR45\",\"product_name\":\"Thai iced black coffee\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-22 11:25:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (45, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"45\",\"date\":\"2023-10-22 12:57:24\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"21285.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"559\",\"suspend_id\":\"45\",\"product_id\":\"141\",\"product_code\":\"PR144\",\"product_name\":\"Fried rice with shrimps, seafood & beef\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"560\",\"suspend_id\":\"45\",\"product_id\":\"57\",\"product_code\":\"PR57\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"561\",\"suspend_id\":\"45\",\"product_id\":\"76\",\"product_code\":\"PR78\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-22 12:18:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (46, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"46\",\"date\":\"2023-10-22 16:13:46\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"17522.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"564\",\"suspend_id\":\"46\",\"product_id\":\"48\",\"product_code\":\"PR27\",\"product_name\":\"Stir-fried with holy basil (chicken\\/shrimp\\/beef\\/mixed meat) \",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"565\",\"suspend_id\":\"46\",\"product_id\":\"58\",\"product_code\":\"PR58\",\"product_name\":\"Spicy papaya salad (Thai style\\/fermented fish\\/mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"566\",\"suspend_id\":\"46\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-22 15:30:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (47, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"70\",\"code\":\"43463819\",\"name\":\"Service Charge\",\"unit\":null,\"cost\":null,\"price\":\"0.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\":\"3\",\"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\":\"43463819\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (48, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"74\",\"code\":\"PF78\",\"name\":\"Ichitan orange\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"ichitan-orange\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (49, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1\",\"code\":\"PR1\",\"name\":\"Chicken Biryani\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-9.0000\",\"tax_rate\":\"3\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chicken-biryani\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (50, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"16\",\"code\":\"PR10\",\"name\":\"Stir-fried glass noodles (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"stir-fried-glass-noodles-chickenshrimpseafood\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (51, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"98\",\"code\":\"PR100\",\"name\":\"Hennessy VS\",\"unit\":\"1\",\"cost\":\"50000.0000\",\"price\":\"50000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"hennessy-vs\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (52, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"99\",\"code\":\"PR101\",\"name\":\"Hennessy VSOP\",\"unit\":\"1\",\"cost\":\"80000.0000\",\"price\":\"80000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"hennessy-vsop\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (53, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"100\",\"code\":\"PR102\",\"name\":\"Origin Bitters Small\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"origin-bitters-small\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (54, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"101\",\"code\":\"PR103\",\"name\":\"Cointreau\",\"unit\":\"1\",\"cost\":\"25000.0000\",\"price\":\"25000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"cointreau\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (55, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"102\",\"code\":\"PR104\",\"name\":\"LA.Merit\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"lamerit\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (56, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"103\",\"code\":\"PR105\",\"name\":\"Baron Romero\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"baron-romero\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (57, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"104\",\"code\":\"PR106\",\"name\":\"Jack Williams\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"jack-williams\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (58, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"105\",\"code\":\"PR107\",\"name\":\"Red Williams\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"red-williams\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (59, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"106\",\"code\":\"PR108\",\"name\":\"Red Label\",\"unit\":\"1\",\"cost\":\"12000.0000\",\"price\":\"12000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"red-label\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (60, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"107\",\"code\":\"PR109\",\"name\":\"Jack Daniels\",\"unit\":\"1\",\"cost\":\"20000.0000\",\"price\":\"20000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"jack-daniels\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (61, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"18\",\"code\":\"PR11\",\"name\":\"Noodles in gravy sauce (chicken\\/shrimp\\/seafood)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"noodles-in-gravy-sauce-chickenshrimpseafood\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (62, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"108\",\"code\":\"PR110\",\"name\":\"Absolute Vodka\",\"unit\":\"1\",\"cost\":\"15000.0000\",\"price\":\"15000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"absolute-vodka\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (63, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"109\",\"code\":\"PR111\",\"name\":\"Black Label\",\"unit\":\"1\",\"cost\":\"27000.0000\",\"price\":\"27000.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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"black-label\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (64, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"110\",\"code\":\"PR112\",\"name\":\"Castillo White Wine\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"castillo-white-wine\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (65, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"111\",\"code\":\"PR113\",\"name\":\"Castillo Red Wine\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"castillo-red-wine\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (66, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"112\",\"code\":\"PR114\",\"name\":\"Carlo Rossi\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"carlo-rossi\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (67, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"113\",\"code\":\"PR115\",\"name\":\"Gordons gin small\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"gordons-gin-small\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (68, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"114\",\"code\":\"PR116\",\"name\":\"Lirid red\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"lirid-red\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (69, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"115\",\"code\":\"PR117\",\"name\":\"Nedenburg\",\"unit\":\"1\",\"cost\":\"16200.0000\",\"price\":\"16200.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"nedenburg\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (70, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"116\",\"code\":\"PR118\",\"name\":\"Agor\",\"unit\":\"1\",\"cost\":\"7500.0000\",\"price\":\"7500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"agor\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (71, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"117\",\"code\":\"PR119\",\"name\":\"Escudo Rojo\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"escudo-rojo\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (72, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"20\",\"code\":\"PR12\",\"name\":\"Baked shrimp with glass noodles\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"baked-shrimp-with-glass-noodles\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (73, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"118\",\"code\":\"PR120\",\"name\":\"Origin big\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"origin-big\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (74, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"119\",\"code\":\"PR121\",\"name\":\"Remy Martin\",\"unit\":\"1\",\"cost\":\"72000.0000\",\"price\":\"72000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"remy-martin\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (75, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"120\",\"code\":\"PR122\",\"name\":\"Jameson Black\",\"unit\":\"1\",\"cost\":\"32400.0000\",\"price\":\"32400.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"jameson-black\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (76, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"121\",\"code\":\"PR123\",\"name\":\"Jameson 1780\",\"unit\":\"1\",\"cost\":\"99000.0000\",\"price\":\"99000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"jameson-1780\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (77, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"122\",\"code\":\"PR124\",\"name\":\"Chamdor\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chamdor\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (78, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"123\",\"code\":\"PR125\",\"name\":\"Bacardi\",\"unit\":\"1\",\"cost\":\"12600.0000\",\"price\":\"12600.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"bacardi\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (79, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"124\",\"code\":\"PR126\",\"name\":\"William Lawson\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"william-lawson\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (80, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"125\",\"code\":\"PR127\",\"name\":\"Four Cousins\",\"unit\":\"1\",\"cost\":\"6300.0000\",\"price\":\"6300.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"four-cousins\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (81, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"126\",\"code\":\"PR128\",\"name\":\"Bullet Can\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"bullet-can\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (82, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"127\",\"code\":\"PR129\",\"name\":\"Red Bull\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"red-bull\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (83, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"22\",\"code\":\"PR13\",\"name\":\"Chicken northern style curry noodles\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chicken-northern-style-curry-noodles\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (84, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"128\",\"code\":\"PR130\",\"name\":\"Andre\",\"unit\":\"1\",\"cost\":\"12000.0000\",\"price\":\"12000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"andre\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (85, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"129\",\"code\":\"PR131\",\"name\":\"Heineken\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"heineken\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (86, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"130\",\"code\":\"PR132\",\"name\":\"Star\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"star\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (87, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"131\",\"code\":\"PR133\",\"name\":\"Gulder\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"gulder\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (88, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"132\",\"code\":\"PR135\",\"name\":\"Star Raddler\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"star-raddler\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (89, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"133\",\"code\":\"PR136\",\"name\":\"Tiger\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"tiger\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (90, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"134\",\"code\":\"PR137\",\"name\":\"Legend\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"legend\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (91, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"135\",\"code\":\"PR138\",\"name\":\"Desperado\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"desperado\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (92, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"136\",\"code\":\"PR139\",\"name\":\"Big Stout\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"big-stout\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (93, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"23\",\"code\":\"PR14\",\"name\":\"Rice noodles with fish curry\\/coconut milk curry\\/northern curry\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"rice-noodles-with-fish-currycoconut-milk-currynorthern-\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (94, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"137\",\"code\":\"PR140\",\"name\":\"Medium Stout\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"medium-stout\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (95, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"138\",\"code\":\"PR141\",\"name\":\"Budwiser\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"budwiser\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (96, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"139\",\"code\":\"PR142\",\"name\":\"Trophy\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"trophy\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (97, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"140\",\"code\":\"PR143\",\"name\":\"Trophy Stout\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"trophy-stout\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (98, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"141\",\"code\":\"PR144\",\"name\":\"Fried rice with shrimps, seafood & beef\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fried-rice-with-shrimps-seafood-beef\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (99, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"142\",\"code\":\"PR145\",\"name\":\"Maltina\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-12.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"maltina\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (100, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"143\",\"code\":\"PR146\",\"name\":\"Coke\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"coke\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (101, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"144\",\"code\":\"PR147\",\"name\":\"Fanta\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fanta\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (102, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"145\",\"code\":\"PR148\",\"name\":\"Sprite\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"sprite\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (103, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"146\",\"code\":\"PR149\",\"name\":\"Tonic Soda\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"tonic-soda\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (104, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"25\",\"code\":\"PR15\",\"name\":\"Noodles (chicken\\/beef\\/Tom Yum)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"noodles-chickenbeeftom-yum\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (105, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"147\",\"code\":\"PR150\",\"name\":\"Chivita Pack\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chivita-pack\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (106, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"148\",\"code\":\"PR151\",\"name\":\"Chivita Glass\",\"unit\":\"1\",\"cost\":\"1000.0000\",\"price\":\"1000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chivita-glass\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (107, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"149\",\"code\":\"PR152\",\"name\":\"Chi-exotic Pack\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chi-exotic\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (108, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"150\",\"code\":\"PR153\",\"name\":\"Chi-exotic Glass\",\"unit\":\"1\",\"cost\":\"1000.0000\",\"price\":\"1000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chi-exotic-glass\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (109, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"151\",\"code\":\"PR154\",\"name\":\"Fresh Juice Glass\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fresh-juice-glass\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (110, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"152\",\"code\":\"PR155\",\"name\":\"Lemon Juice Glass\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"lemon-juice-glass\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (111, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"153\",\"code\":\"PR156\",\"name\":\"Fried rice mixed\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fried-rice-mixed\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (112, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"154\",\"code\":\"PR157\",\"name\":\"Fried egg\",\"unit\":\"1\",\"cost\":\"700.0000\",\"price\":\"700.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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"fried-egg\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (113, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"155\",\"code\":\"PR158\",\"name\":\"Tequila shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"tequila-shot\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (114, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"156\",\"code\":\"PR159\",\"name\":\"Gordons shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"gordons-shot\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (115, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"26\",\"code\":\"PR16\",\"name\":\"Noodles in red tofu clear soup\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"noodles-in-red-tofu-clear-soup\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (116, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"157\",\"code\":\"PR160\",\"name\":\"Campari shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"campari-shot\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (117, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"158\",\"code\":\"PR161\",\"name\":\"Cointreau shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"cointreau-shot\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (118, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"159\",\"code\":\"PR162\",\"name\":\"Black label shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"black-label-shot\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (119, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"160\",\"code\":\"PR163\",\"name\":\"Red label shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"red-label-shot\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (120, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"161\",\"code\":\"PR164\",\"name\":\"Bacardi shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"bacardi-shot\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (121, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"162\",\"code\":\"PR165\",\"name\":\"Absolute vodka shot\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"absolute-vodka-shot\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (122, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"163\",\"code\":\"PR166\",\"name\":\"X1 Vodka shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"x1-vodka-shot\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (123, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"164\",\"code\":\"PR167\",\"name\":\"Hero\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"hero\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (124, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"165\",\"code\":\"PR168\",\"name\":\"Andre rose\",\"unit\":\"1\",\"cost\":\"15000.0000\",\"price\":\"15000.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"andre-rose\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (125, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"28\",\"code\":\"PR17\",\"name\":\"Green curry (chicken\\/beef)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"green-curry-chickenbeef\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (126, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"171\",\"code\":\"PR170\",\"name\":\"Spicy beef soup\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":\"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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"spicy-beef-soup\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (127, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"30\",\"code\":\"PR18\",\"name\":\"Red curry (chicken\\/beef)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"red-curry-chickenbeef\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (128, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"32\",\"code\":\"PR19\",\"name\":\"Panang curry (chicken\\/beef)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"panang-curry-chickenbeef\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (129, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"2\",\"code\":\"PR2\",\"name\":\"Lamb Biryani\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"lamb-biryani\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (130, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"33\",\"code\":\"PR20\",\"name\":\"Chicken leg curry\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chicken-leg-curry\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (131, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"166\",\"code\":\"PR200\",\"name\":\"Nederburg\",\"unit\":\"1\",\"cost\":\"16200.0000\",\"price\":\"16200.0000\",\"alert_quantity\":\"0.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\":\"1\",\"promo_price\":null,\"start_date\":null,\"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\":\"nederburg\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (132, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"167\",\"code\":\"PR201\",\"name\":\"MOJITO\",\"unit\":\"1\",\"cost\":\"6000.0000\",\"price\":\"6000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"mojito\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (133, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"168\",\"code\":\"PR202\",\"name\":\"LONG  ISLAND\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"long-island\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (134, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"169\",\"code\":\"PR205\",\"name\":\"TIEGLILU\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"tieglilu\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (135, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"170\",\"code\":\"PR206\",\"name\":\"CHIMAN\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chiman\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (136, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"35\",\"code\":\"PR21\",\"name\":\"Massaman Curry (chicken\\/beef\\/lamb)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"massaman-curry-chickenbeeflamb\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (137, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"172\",\"code\":\"PR210\",\"name\":\"CHAPMAN\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chapman\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (138, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"173\",\"code\":\"PR211\",\"name\":\"Gordons BIG\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"gordons-big\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (139, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"174\",\"code\":\"PR212\",\"name\":\"Gordons SMALL\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"gordons-small\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (140, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"175\",\"code\":\"PR213\",\"name\":\"PINEAPPLE  JUICE\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"pineapple-juice\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (141, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"176\",\"code\":\"PR214\",\"name\":\"WATERMELON  JUICE\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"watermelon-juice\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (142, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"177\",\"code\":\"PR215\",\"name\":\"ORANGE  JUICE\",\"unit\":\"1\",\"cost\":\"4000.0000\",\"price\":\"4000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"orange-juice\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (143, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"178\",\"code\":\"PR216\",\"name\":\"STRAWBERRY JUICE\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"strawberry-juice\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (144, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"38\",\"code\":\"PR22\",\"name\":\"Sour soup with fish\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"sour-soup-with-fish\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (145, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"39\",\"code\":\"PR23\",\"name\":\"Chicken, tofu and seaweed in clear soup\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chicken-tofu-and-seaweed-in-clear-soup\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (146, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"42\",\"code\":\"PR24\",\"name\":\"Tom Yum (shrimp\\/seafood) (clear soup\\/creamy soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-18.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"tom-yum-shrimpseafood-clear-soupcreamy-soup\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (147, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"44\",\"code\":\"PR25\",\"name\":\"Boiled chicken in fish sauce\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"boiled-chicken-in-fish-sauce\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (148, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"46\",\"code\":\"PR26\",\"name\":\"Stewed eggs\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"stewed-eggs\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (149, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"48\",\"code\":\"PR27\",\"name\":\"Stir-fried with holy basil (chicken\\/shrimp\\/beef\\/mixed meat) \",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-15.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"stir-fried-with-holy-basil-chickenshrimpbeefmixed-meat\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (150, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"50\",\"code\":\"PR28\",\"name\":\"Stir-fried with bell peppers (chicken\\/shrimp\\/beef\\/mixed meat)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"stir-fried-with-bell-peppers\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (151, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"51\",\"code\":\"PR29\",\"name\":\"Stir-fried chicken with ginger \",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"stir-fried-chicken-with-ginger\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (152, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3\",\"code\":\"PR3\",\"name\":\"Steamed rice topped with chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"steamed-rice-topped-with-chicken\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (153, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"52\",\"code\":\"PR30\",\"name\":\"Stir-fried mixed vegetables\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"stir-fried-mixed-vegetables\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (154, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"49\",\"code\":\"PR31\",\"name\":\"Beef hot pan\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"beef-hot-pan\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (155, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"47\",\"code\":\"PR32\",\"name\":\"Seafood hot pan\",\"unit\":\"1\",\"cost\":\"10900.0000\",\"price\":\"10900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"7\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"seafood-hot-pan\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (156, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"45\",\"code\":\"PR33\",\"name\":\"Mixed set (large)\",\"unit\":\"1\",\"cost\":\"15000.0000\",\"price\":\"15000.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"mixed-set-large\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (157, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"43\",\"code\":\"PR34\",\"name\":\"Mixed set (small)\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"7\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"mixed-set-small\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (158, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"41\",\"code\":\"PR35\",\"name\":\"Pandan custard bread\",\"unit\":\"1\",\"cost\":\"5500.0000\",\"price\":\"5500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"pandan-custard-bread\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (159, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"40\",\"code\":\"PR36\",\"name\":\"Sago pearls\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"8\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-10.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"sago-pearls\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (160, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"37\",\"code\":\"PR37\",\"name\":\"Glutinous rice balls\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"8\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"glutinous-rice-balls\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (161, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"36\",\"code\":\"PR38\",\"name\":\"Crispy red ruby\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"crispy-red-ruby\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (162, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"34\",\"code\":\"PR39\",\"name\":\"Cendol in coconut milk\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"cendol-in-coconut-milk\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (163, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4\",\"code\":\"PR4\",\"name\":\"Fried rice with chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fried-rice-with-shrimpschickenmixed-seafood\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (164, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"31\",\"code\":\"PR40\",\"name\":\"Longan juice \",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"longan-juice\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (165, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"29\",\"code\":\"PR41\",\"name\":\"Chrysanthemum juice \",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chrysanthemum-juice\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (166, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"27\",\"code\":\"PR42\",\"name\":\"Roselle juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"roselle-juice\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (167, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"24\",\"code\":\"PR43\",\"name\":\"Bael fruit juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"bael-fruit-juice\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (168, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"21\",\"code\":\"PR44\",\"name\":\"Pandan juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"pandan-juice\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (169, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"19\",\"code\":\"PR45\",\"name\":\"Thai iced black coffee\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"thai-iced-black-coffee\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (170, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"17\",\"code\":\"PR46\",\"name\":\"Thai tea\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"thai-tea\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (171, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"15\",\"code\":\"PR47\",\"name\":\"Milk tea\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"milk-tea\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (172, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"13\",\"code\":\"PR48\",\"name\":\"Green tea\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"green-tea\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (173, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"12\",\"code\":\"PR49\",\"name\":\"Chang beer\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"chang-beer\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (174, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5\",\"code\":\"PR5\",\"name\":\"Tom yum fried rice\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"tom-yum-fried-rice\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (175, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"10\",\"code\":\"PR50\",\"name\":\"Leo beer\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"leo-beer\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (176, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"8\",\"code\":\"PR51\",\"name\":\"Singha beer\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"singha-beer\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (177, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6\",\"code\":\"PR52\",\"name\":\"Regency\",\"unit\":\"1\",\"cost\":\"65000.0000\",\"price\":\"65000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"regency\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (178, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"53\",\"code\":\"PR53\",\"name\":\"Sweet and sour stir fry\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"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\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"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\":\"sweet-and-sour-stir-fry\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (179, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"54\",\"code\":\"PR54\",\"name\":\"Fried boiled egg with tamarind sauce\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fried-boiled-egg-with-tamarind-sauce\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (180, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"55\",\"code\":\"PR55\",\"name\":\"Stir-fried crab with curry powder\",\"unit\":\"1\",\"cost\":\"10200.0000\",\"price\":\"10200.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"stir-fried-crab-with-curry-powder\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (181, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"56\",\"code\":\"PR56\",\"name\":\"Spicy glass noodles salad\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"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\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"spicy-glass-noodles-salad\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (182, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"57\",\"code\":\"PR57\",\"name\":\"Spicy mixed seafood salad\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"spicy-mixed-seafood-salad\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (183, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"58\",\"code\":\"PR58\",\"name\":\"Spicy papaya salad (Thai style\\/fermented fish\\/mixed ingrediets)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-18.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"spicy-papaya-salad-thai-stylefermented-fishmixed-ingred\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (184, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"59\",\"code\":\"PR59\",\"name\":\"Spicy minced\\/chopped meat salad (beef\\/chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-10.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"spicy-mincedchopped-meat-salad-beefchicken\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (185, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7\",\"code\":\"PR6\",\"name\":\"Rice\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"rice\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (186, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"60\",\"code\":\"PR60\",\"name\":\"Fried spring rolls (stuffed with chicken\\/shrimp\\/vegetables\\/cheese)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fried-spring-rolls-stuffed-with-chickenshrimpvegetables\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (187, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"61\",\"code\":\"PR61\",\"name\":\"Hat Yai-style fried chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"hat-yai-style-fried-chicken\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (188, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"62\",\"code\":\"PR62\",\"name\":\"Fried shrimp\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fried-shrimp\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (189, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"63\",\"code\":\"PR63\",\"name\":\"Fried squid\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fried-squid\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (190, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"64\",\"code\":\"PR64\",\"name\":\"Fried chicken wings\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fried-chicken-wings\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (191, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"65\",\"code\":\"PR65\",\"name\":\"Sun-dried beef\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"sun-dried-beef\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (192, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"66\",\"code\":\"PR66\",\"name\":\"Deep fried chicken rolls (8 pcs)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"deep-fried-chicken-rolls-8-pcs\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (193, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"67\",\"code\":\"PR67\",\"name\":\"Red grilled chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"red-grilled-chicken\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (194, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"68\",\"code\":\"PR68\",\"name\":\"Fried fish with three flavors sauce\",\"unit\":\"1\",\"cost\":\"13000.0000\",\"price\":\"13000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fried-fish-with-three-flavors-sauce\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (195, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"69\",\"code\":\"PR69\",\"name\":\"Fried fish with chili sauce\",\"unit\":\"1\",\"cost\":\"13000.0000\",\"price\":\"13000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fried-fish-with-chili-sauce\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (196, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"9\",\"code\":\"PR7\",\"name\":\"Sticky rice\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-23.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"sticky-rice\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (197, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"71\",\"code\":\"PR75\",\"name\":\"Water\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-41.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"water\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (198, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"72\",\"code\":\"PR76\",\"name\":\"Ichitan yellow\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"ichitan-yellow\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (199, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"73\",\"code\":\"PR77\",\"name\":\"Ichitan green\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"ichitan-green\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (200, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"76\",\"code\":\"PR78\",\"name\":\"Takeaway\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"10\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-51.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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"takeaway-pack\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (201, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"77\",\"code\":\"PR79\",\"name\":\"Pad Thai (seafood,beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"pad-thai-seafoodbeef\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (202, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"11\",\"code\":\"PR8\",\"name\":\"Pad Thai (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"pad-thai-chickenshrimpseafood\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (203, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"78\",\"code\":\"PR80\",\"name\":\"Pad Thai (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"pad-thai-mix\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (204, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"79\",\"code\":\"PR81\",\"name\":\"Stir-fried glass noodles (seafood, beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"stir-fried-glass-noodles-seafood-beef\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (205, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"80\",\"code\":\"PR82\",\"name\":\"Stir-fried glass noodles (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"stir-fried-glass-noodles-mixed\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (206, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"81\",\"code\":\"PR83\",\"name\":\"Gordons gin\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"gordons-gin\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (207, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"82\",\"code\":\"PR84\",\"name\":\"Two oceans\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"two-oceans\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (208, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"83\",\"code\":\"PR85\",\"name\":\"Sky vodka\",\"unit\":\"1\",\"cost\":\"15200.0000\",\"price\":\"15200.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"sky-vodka\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (209, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"84\",\"code\":\"PR86\",\"name\":\"Martell VS\",\"unit\":\"1\",\"cost\":\"65000.0000\",\"price\":\"65000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"martell-vs\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (210, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"85\",\"code\":\"PR87\",\"name\":\"Campari\",\"unit\":\"1\",\"cost\":\"20000.0000\",\"price\":\"20000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"campari\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (211, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"86\",\"code\":\"PR88\",\"name\":\"Baileys\",\"unit\":\"1\",\"cost\":\"15500.0000\",\"price\":\"15500.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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"baileys\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (212, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"87\",\"code\":\"PR89\",\"name\":\"4th Street Red\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"4th-street-red\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (213, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"14\",\"code\":\"PR9\",\"name\":\"Stir-fried noodle with soy sauce (chicken\\/shrimp\\/seafood)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"stir-fried-noodle-with-soy-sauce-chickenshrimpseafood\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (214, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"88\",\"code\":\"PR90\",\"name\":\"4th Street White\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"4th-street-white\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (215, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"89\",\"code\":\"PR91\",\"name\":\"Mastinellis\",\"unit\":\"1\",\"cost\":\"9000.0000\",\"price\":\"9000.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"mastinellis\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (216, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"90\",\"code\":\"PR92\",\"name\":\"Omega Tequila\",\"unit\":\"1\",\"cost\":\"25000.0000\",\"price\":\"25000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"omega-tequila\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (217, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"91\",\"code\":\"PR93\",\"name\":\"Martell Blue Swift\",\"unit\":\"1\",\"cost\":\"100000.0000\",\"price\":\"100000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"martell-blue-swift\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (218, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"92\",\"code\":\"PR94\",\"name\":\"Sierra Tequila\",\"unit\":\"1\",\"cost\":\"30000.0000\",\"price\":\"30000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"sierra-tequila\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (219, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"93\",\"code\":\"PR95\",\"name\":\"Bombay Sapphire\",\"unit\":\"1\",\"cost\":\"12500.0000\",\"price\":\"12500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"bombay-sapphire\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (220, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"94\",\"code\":\"PR96\",\"name\":\"Smirnoff X1\",\"unit\":\"1\",\"cost\":\"6500.0000\",\"price\":\"6500.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"smirnoff-x1\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (221, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"95\",\"code\":\"PR97\",\"name\":\"Teeling Whisky\",\"unit\":\"1\",\"cost\":\"25000.0000\",\"price\":\"25000.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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"teeling-whisky\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (222, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"96\",\"code\":\"PR98\",\"name\":\"Pascas\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"pascas\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (223, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"97\",\"code\":\"PR99\",\"name\":\"Flirt Vodka\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"flirt-vodka\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 15:51:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (224, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"179\",\"code\":\"1\",\"name\":\"Chicken Biryani\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"3\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chicken-biryani\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (225, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"198\",\"code\":\"10\",\"name\":\"Stir-fried glass noodles (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-glass-noodles-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (226, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"329\",\"code\":\"100\",\"name\":\"Jameson Black\",\"unit\":\"1\",\"cost\":\"32400.0000\",\"price\":\"32400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jameson-black\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (227, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"330\",\"code\":\"101\",\"name\":\"Jameson 1780\",\"unit\":\"1\",\"cost\":\"99000.0000\",\"price\":\"99000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jameson-1780\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (228, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"331\",\"code\":\"102\",\"name\":\"Chamdor\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chamdor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (229, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"332\",\"code\":\"103\",\"name\":\"Bacardi\",\"unit\":\"1\",\"cost\":\"12600.0000\",\"price\":\"12600.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bacardi\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (230, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"333\",\"code\":\"104\",\"name\":\"William Lawson\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"william-lawson\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (231, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"334\",\"code\":\"105\",\"name\":\"Four Cousins\",\"unit\":\"1\",\"cost\":\"6300.0000\",\"price\":\"6300.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"four-cousins\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (232, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"335\",\"code\":\"106\",\"name\":\"Bullet Can\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bullet-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (233, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"336\",\"code\":\"107\",\"name\":\"Red Bull\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-bull\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (234, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"337\",\"code\":\"108\",\"name\":\"Medium Stout\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medium-stout\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (235, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"338\",\"code\":\"109\",\"name\":\"Budwiser\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"budwiser\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (236, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"199\",\"code\":\"10b\",\"name\":\"Stir-fried glass noodles (seafood)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-glass-noodles-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (237, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"200\",\"code\":\"10c\",\"name\":\"Stir-fried glass noodles (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-glass-noodles-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (238, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"201\",\"code\":\"10d\",\"name\":\"Stir-fried glass noodles (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-glass-noodles-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (239, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"202\",\"code\":\"11\",\"name\":\"Noodles in gravy sauce (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-gravy-sauce-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (240, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"339\",\"code\":\"110\",\"name\":\"Trophy\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"trophy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (241, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"340\",\"code\":\"111\",\"name\":\"Trophy Stout\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"trophy-stout\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (242, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"341\",\"code\":\"112\",\"name\":\"Maltina\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maltina\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (243, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"342\",\"code\":\"113\",\"name\":\"Coke\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coke\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (244, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"343\",\"code\":\"114\",\"name\":\"Fanta\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fanta\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (245, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"344\",\"code\":\"115\",\"name\":\"Sprite\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sprite\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (246, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"345\",\"code\":\"116\",\"name\":\"Tonic Soda\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tonic-soda\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (247, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"346\",\"code\":\"117\",\"name\":\"Chivita Pack\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chivita-pack\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (248, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"347\",\"code\":\"118\",\"name\":\"Chivita Glass\",\"unit\":\"1\",\"cost\":\"1000.0000\",\"price\":\"1000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chivita-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (249, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"348\",\"code\":\"119\",\"name\":\"Chi-exotic Pack\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chi-exotic-pack\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (250, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"203\",\"code\":\"11b\",\"name\":\"Noodles in gravy sauce (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-gravy-sauce-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (251, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"204\",\"code\":\"11c\",\"name\":\"Noodles in gravy sauce (seafood)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-gravy-sauce-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (252, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"205\",\"code\":\"11d\",\"name\":\"Noodles in gravy sauce (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-gravy-sauce-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (253, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"206\",\"code\":\"12\",\"name\":\"Baked shrimp with glass noodles\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baked-shrimp-with-glass-noodles\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (254, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"349\",\"code\":\"120\",\"name\":\"Chi-exotic Glass\",\"unit\":\"1\",\"cost\":\"1000.0000\",\"price\":\"1000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chi-exotic-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (255, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"350\",\"code\":\"121\",\"name\":\"Fresh Juice Glass\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fresh-juice-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (256, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"351\",\"code\":\"122\",\"name\":\"Lemon Juice Glass\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lemon-juice-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (257, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"352\",\"code\":\"123\",\"name\":\"Fried rice mixed\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (258, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"353\",\"code\":\"124\",\"name\":\"Fried egg\",\"unit\":\"1\",\"cost\":\"700.0000\",\"price\":\"700.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-egg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (259, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"354\",\"code\":\"125\",\"name\":\"Tequila shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tequila-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (260, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"355\",\"code\":\"126\",\"name\":\"Gordons shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (261, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"356\",\"code\":\"127\",\"name\":\"Campari shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"campari-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (262, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"357\",\"code\":\"128\",\"name\":\"Cointreau shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cointreau-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (263, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"358\",\"code\":\"129\",\"name\":\"Black label shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"black-label-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (264, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"207\",\"code\":\"13\",\"name\":\"Chicken northern style curry noodles\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chicken-northern-style-curry-noodles\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (265, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"359\",\"code\":\"130\",\"name\":\"Red label shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-label-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (266, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"360\",\"code\":\"131\",\"name\":\"Bacardi shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bacardi-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (267, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"361\",\"code\":\"132\",\"name\":\"Absolute vodka shot\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"absolute-vodka-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (268, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"362\",\"code\":\"133\",\"name\":\"X1 Vodka shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"x1-vodka-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (269, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"363\",\"code\":\"134\",\"name\":\"Hero\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hero\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (270, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"364\",\"code\":\"135\",\"name\":\"Andre rose\",\"unit\":\"1\",\"cost\":\"15000.0000\",\"price\":\"15000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"andre-rose\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (271, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"365\",\"code\":\"136\",\"name\":\"Spicy beef soup\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-beef-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (272, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"366\",\"code\":\"137\",\"name\":\"Nederburg\",\"unit\":\"1\",\"cost\":\"16200.0000\",\"price\":\"16200.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nederburg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (273, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"367\",\"code\":\"138\",\"name\":\"MOJITO\",\"unit\":\"1\",\"cost\":\"6000.0000\",\"price\":\"6000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mojito\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (274, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"368\",\"code\":\"139\",\"name\":\"LONG  ISLAND\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"long-island\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (275, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"208\",\"code\":\"14\",\"name\":\"Rice noodles with fish curry\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rice-noodles-with-fish-curry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (276, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"369\",\"code\":\"140\",\"name\":\"TIEGLILU\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tieglilu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (277, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"370\",\"code\":\"141\",\"name\":\"CHIMAN\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chiman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (278, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"371\",\"code\":\"142\",\"name\":\"CHAPMAN\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chapman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (279, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"372\",\"code\":\"143\",\"name\":\"Gordons BIG\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (280, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"373\",\"code\":\"144\",\"name\":\"Gordons SMALL\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (281, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"374\",\"code\":\"145\",\"name\":\"PINEAPPLE  JUICE\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pineapple-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (282, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"375\",\"code\":\"146\",\"name\":\"WATERMELON  JUICE\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"watermelon-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (283, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"376\",\"code\":\"147\",\"name\":\"ORANGE  JUICE\",\"unit\":\"1\",\"cost\":\"4000.0000\",\"price\":\"4000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orange-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (284, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"377\",\"code\":\"148\",\"name\":\"STRAWBERRY JUICE\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"strawberry-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (285, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"378\",\"code\":\"149\",\"name\":\"Water\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"water\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (286, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"209\",\"code\":\"14b\",\"name\":\"Rice noodles with coconut milk curry\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rice-noodles-with-coconut-milk-curry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (287, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"210\",\"code\":\"14c\",\"name\":\"Rice noodles with northern curry\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rice-noodles-with-northern-curry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (288, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"211\",\"code\":\"15\",\"name\":\"Noodles (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (289, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"379\",\"code\":\"150\",\"name\":\"Ichitan yellow\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ichitan-yellow\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (290, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"380\",\"code\":\"151\",\"name\":\"Ichitan green\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ichitan-green\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (291, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"381\",\"code\":\"152\",\"name\":\"Takeaway\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"10\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"takeaway\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (292, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"382\",\"code\":\"153\",\"name\":\"Gordons gin\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-gin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (293, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"383\",\"code\":\"154\",\"name\":\"Two oceans\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"two-oceans\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (294, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"384\",\"code\":\"155\",\"name\":\"Sky vodka\",\"unit\":\"1\",\"cost\":\"15200.0000\",\"price\":\"15200.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sky-vodka\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (295, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"385\",\"code\":\"156\",\"name\":\"Martell VS\",\"unit\":\"1\",\"cost\":\"65000.0000\",\"price\":\"65000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"martell-vs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (296, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"386\",\"code\":\"157\",\"name\":\"Campari\",\"unit\":\"1\",\"cost\":\"20000.0000\",\"price\":\"20000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"campari\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (297, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"387\",\"code\":\"158\",\"name\":\"Baileys\",\"unit\":\"1\",\"cost\":\"15500.0000\",\"price\":\"15500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baileys\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (298, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"388\",\"code\":\"159\",\"name\":\"4th Street Red\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4th-street-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (299, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"212\",\"code\":\"15b\",\"name\":\"Noodles (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (300, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"213\",\"code\":\"15c\",\"name\":\"Noodles (Tom Yum)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-tom-yum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (301, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"214\",\"code\":\"16\",\"name\":\"Noodles in red tofu clear soup\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-red-tofu-clear-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (302, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"389\",\"code\":\"160\",\"name\":\"4th Street White\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4th-street-white\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (303, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"390\",\"code\":\"161\",\"name\":\"Mastinellis\",\"unit\":\"1\",\"cost\":\"9000.0000\",\"price\":\"9000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mastinellis\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (304, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"391\",\"code\":\"162\",\"name\":\"Omega Tequila\",\"unit\":\"1\",\"cost\":\"25000.0000\",\"price\":\"25000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omega-tequila\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (305, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"392\",\"code\":\"163\",\"name\":\"Martell Blue Swift\",\"unit\":\"1\",\"cost\":\"100000.0000\",\"price\":\"100000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"martell-blue-swift\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (306, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"393\",\"code\":\"164\",\"name\":\"Sierra Tequila\",\"unit\":\"1\",\"cost\":\"30000.0000\",\"price\":\"30000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sierra-tequila\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (307, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"394\",\"code\":\"165\",\"name\":\"Bombay Sapphire\",\"unit\":\"1\",\"cost\":\"12500.0000\",\"price\":\"12500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bombay-sapphire\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (308, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"395\",\"code\":\"166\",\"name\":\"Smirnoff X1\",\"unit\":\"1\",\"cost\":\"6500.0000\",\"price\":\"6500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"smirnoff-x1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (309, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"396\",\"code\":\"167\",\"name\":\"Teeling Whisky\",\"unit\":\"1\",\"cost\":\"25000.0000\",\"price\":\"25000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"teeling-whisky\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (310, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"397\",\"code\":\"168\",\"name\":\"Pascas\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pascas\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (311, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"398\",\"code\":\"169\",\"name\":\"Flirt Vodka\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flirt-vodka\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (312, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"215\",\"code\":\"17\",\"name\":\"Green curry (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-curry-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (313, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"399\",\"code\":\"170\",\"name\":\"Ichitan orange\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ichitan-orange\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (314, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"216\",\"code\":\"17b\",\"name\":\"Green curry (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-curry-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (315, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"217\",\"code\":\"17c\",\"name\":\"Green curry (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-curry-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (316, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"218\",\"code\":\"17d\",\"name\":\"Green curry (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-curry-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (317, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"219\",\"code\":\"18\",\"name\":\"Red curry (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-curry-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (318, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"220\",\"code\":\"18b\",\"name\":\"Red curry (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-curry-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (319, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"221\",\"code\":\"18c\",\"name\":\"Red curry (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-curry-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (320, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"222\",\"code\":\"18d\",\"name\":\"Red curry (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-curry-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (321, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"223\",\"code\":\"19\",\"name\":\"Panang curry (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panang-curry-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (322, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"224\",\"code\":\"19b\",\"name\":\"Panang curry (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panang-curry-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (323, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"225\",\"code\":\"19c\",\"name\":\"Panang curry (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panang-curry-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (324, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"226\",\"code\":\"19d\",\"name\":\"Panang curry (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panang-curry-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (325, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"180\",\"code\":\"2\",\"name\":\"Lamb Biryani\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lamb-biryani\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (326, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"227\",\"code\":\"20\",\"name\":\"Chicken leg curry\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chicken-leg-curry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (327, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"228\",\"code\":\"21\",\"name\":\"Massaman Curry (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"massaman-curry-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (328, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"229\",\"code\":\"21b\",\"name\":\"Massaman Curry (beef)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"massaman-curry-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (329, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"230\",\"code\":\"21c\",\"name\":\"Massaman Curry (lamb)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"massaman-curry-lamb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (330, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"231\",\"code\":\"22\",\"name\":\"Sour soup with fish\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sour-soup-with-fish\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (331, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"232\",\"code\":\"23\",\"name\":\"Chicken, tofu and seaweed in clear soup\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chicken-tofu-and-seaweed-in-clear-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (332, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"233\",\"code\":\"24\",\"name\":\"Tom Yum (shrimp\\/clear soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-shrimpclear-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (333, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"234\",\"code\":\"24b\",\"name\":\"Tom Yum (shrimp\\/creamy soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-shrimpcreamy-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (334, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"235\",\"code\":\"24c\",\"name\":\"Tom Yum (seafood\\/clear soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-seafoodclear-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (335, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"236\",\"code\":\"24d\",\"name\":\"Tom Yum (seafood\\/creamy soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-seafoodcreamy-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (336, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"237\",\"code\":\"25\",\"name\":\"Boiled chicken in fish sauce\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"boiled-chicken-in-fish-sauce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (337, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"238\",\"code\":\"26\",\"name\":\"Stewed eggs\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stewed-eggs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (338, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"239\",\"code\":\"27\",\"name\":\"Stir-fried with holy basil (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-holy-basil-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (339, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"240\",\"code\":\"27b\",\"name\":\"Stir-fried with holy basil (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-holy-basil-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (340, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"241\",\"code\":\"27c\",\"name\":\"Stir-fried with holy basil (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-holy-basil-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (341, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"242\",\"code\":\"27d\",\"name\":\"Stir-fried with holy basil (mixed meat)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-holy-basil-mixed-meat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (342, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"243\",\"code\":\"28\",\"name\":\"Stir-fried with bell peppers (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-bell-peppers-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (343, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"244\",\"code\":\"28b\",\"name\":\"Stir-fried with bell peppers (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-bell-peppers-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (344, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"245\",\"code\":\"28c\",\"name\":\"Stir-fried with bell peppers (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-bell-peppers-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (345, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"246\",\"code\":\"28d\",\"name\":\"Stir-fried with bell peppers (mixed meat)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-bell-peppers-mixed-meat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (346, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"247\",\"code\":\"29\",\"name\":\"Stir-fried chicken with ginger\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-chicken-with-ginger\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (347, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"181\",\"code\":\"3\",\"name\":\"Steamed rice topped with chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"steamed-rice-topped-with-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (348, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"248\",\"code\":\"30\",\"name\":\"Stir-fried mixed vegetables\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-mixed-vegetables\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (349, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"249\",\"code\":\"30b\",\"name\":\"Stir-fried shrimp mixed vegetables\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-shrimp-mixed-vegetables\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (350, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"250\",\"code\":\"30c\",\"name\":\"Stir-fried beef mixed vegetables\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-beef-mixed-vegetables\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (351, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"251\",\"code\":\"31\",\"name\":\"Sweet and sour stir fry\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sweet-and-sour-stir-fry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (352, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"252\",\"code\":\"32\",\"name\":\"Fried boiled egg with tamarind sauce\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-boiled-egg-with-tamarind-sauce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (353, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"253\",\"code\":\"33\",\"name\":\"Stir-fried crab with curry powder\",\"unit\":\"1\",\"cost\":\"10200.0000\",\"price\":\"10200.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-crab-with-curry-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (354, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"254\",\"code\":\"34\",\"name\":\"Spicy glass noodles salad\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-glass-noodles-salad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (355, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"255\",\"code\":\"35\",\"name\":\"Spicy papaya salad (Thai style)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-papaya-salad-thai-style\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (356, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"256\",\"code\":\"35b\",\"name\":\"Spicy papaya salad (fermented fish)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-papaya-salad-fermented-fish\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (357, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"257\",\"code\":\"35c\",\"name\":\"Spicy papaya salad (mixed ingrediets)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-papaya-salad-mixed-ingrediets\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (358, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"258\",\"code\":\"36\",\"name\":\"Spicy mixed seafood salad\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-mixed-seafood-salad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (359, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"259\",\"code\":\"37\",\"name\":\"Spicy minced (beef)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-minced-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (360, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"260\",\"code\":\"37b\",\"name\":\"Spicy minced (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-minced-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (361, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"261\",\"code\":\"37c\",\"name\":\"Spicy chopped meat salad (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-chopped-meat-salad-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (362, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"262\",\"code\":\"37d\",\"name\":\"Spicy chopped meat salad (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-chopped-meat-salad-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (363, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"263\",\"code\":\"38\",\"name\":\"Fried spring rolls (stuffed with chicken)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-spring-rolls-stuffed-with-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (364, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"264\",\"code\":\"38b\",\"name\":\"Fried spring rolls (stuffed with shrimp)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-spring-rolls-stuffed-with-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (365, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"265\",\"code\":\"38c\",\"name\":\"Fried spring rolls (stuffed with vegetables)\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-spring-rolls-stuffed-with-vegetables\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (366, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"266\",\"code\":\"38d\",\"name\":\"Fried spring rolls (stuffed with cheese)\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-spring-rolls-stuffed-with-cheese\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (367, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"267\",\"code\":\"39\",\"name\":\"Hat Yai-style fried chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hat-yai-style-fried-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (368, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"268\",\"code\":\"40\",\"name\":\"Fried shrimp\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (369, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"269\",\"code\":\"41\",\"name\":\"Fried squid\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-squid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (370, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"270\",\"code\":\"42\",\"name\":\"Fried chicken wings\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-chicken-wings\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (371, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"271\",\"code\":\"43\",\"name\":\"Sun-dried beef\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sun-dried-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (372, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"272\",\"code\":\"44\",\"name\":\"Deep fried chicken rolls (8 pcs)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"deep-fried-chicken-rolls-8-pcs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (373, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"273\",\"code\":\"45\",\"name\":\"Red grilled chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-grilled-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (374, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"274\",\"code\":\"46\",\"name\":\"Fried fish with three flavors sauce\",\"unit\":\"1\",\"cost\":\"13000.0000\",\"price\":\"13000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-fish-with-three-flavors-sauce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (375, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"275\",\"code\":\"47\",\"name\":\"Fried fish with chili sauce\",\"unit\":\"1\",\"cost\":\"13000.0000\",\"price\":\"13000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-fish-with-chili-sauce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (376, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"276\",\"code\":\"48\",\"name\":\"Beef hot pan\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"beef-hot-pan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (377, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"277\",\"code\":\"49\",\"name\":\"Seafood hot pan\",\"unit\":\"1\",\"cost\":\"10900.0000\",\"price\":\"10900.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"seafood-hot-pan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (378, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"182\",\"code\":\"4a\",\"name\":\"Fried rice with chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fried-rice-with-chicken\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (379, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"183\",\"code\":\"4b\",\"name\":\"Fried rice with shrimps\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-with-shrimps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (380, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"184\",\"code\":\"4c\",\"name\":\"Fried rice with seafood\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-with-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (381, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"185\",\"code\":\"4d\",\"name\":\"Fried rice with beef\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-with-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (382, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"186\",\"code\":\"4e\",\"name\":\"Fried rice mixed\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (383, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"187\",\"code\":\"5\",\"name\":\"Tom yum fried rice\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-fried-rice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (384, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"278\",\"code\":\"50\",\"name\":\"Mixed set (large)\",\"unit\":\"1\",\"cost\":\"15000.0000\",\"price\":\"15000.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mixed-set-large\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (385, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"279\",\"code\":\"50b\",\"name\":\"Mixed set (small)\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mixed-set-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (386, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"280\",\"code\":\"51\",\"name\":\"Pandan custard bread\",\"unit\":\"1\",\"cost\":\"5500.0000\",\"price\":\"5500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pandan-custard-bread\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (387, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"281\",\"code\":\"52\",\"name\":\"Sago pearls\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sago-pearls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (388, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"282\",\"code\":\"53\",\"name\":\"Glutinous rice balls\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glutinous-rice-balls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (389, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"283\",\"code\":\"54\",\"name\":\"Crispy red ruby\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"crispy-red-ruby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (390, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"284\",\"code\":\"55\",\"name\":\"Cendol in coconut milk\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cendol-in-coconut-milk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (391, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"285\",\"code\":\"56\",\"name\":\"Longan juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"longan-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (392, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"286\",\"code\":\"57\",\"name\":\"Chrysanthemum juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chrysanthemum-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (393, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"287\",\"code\":\"58\",\"name\":\"Roselle juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"roselle-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (394, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"288\",\"code\":\"59\",\"name\":\"Bael fruit juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bael-fruit-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (395, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"188\",\"code\":\"6\",\"name\":\"Rice\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (396, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"289\",\"code\":\"60\",\"name\":\"Pandan juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pandan-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (397, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"290\",\"code\":\"61\",\"name\":\"Thai iced black coffee\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"thai-iced-black-coffee\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (398, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"291\",\"code\":\"62\",\"name\":\"Thai tea\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"thai-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (399, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"292\",\"code\":\"63\",\"name\":\"Milk tea\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"milk-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (400, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"293\",\"code\":\"64\",\"name\":\"Green tea\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (401, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"294\",\"code\":\"65\",\"name\":\"Chang beer\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chang-beer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (402, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"295\",\"code\":\"66\",\"name\":\"Leo beer\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"leo-beer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (403, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"296\",\"code\":\"67\",\"name\":\"Singha beer\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"singha-beer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (404, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"297\",\"code\":\"68\",\"name\":\"Regency\",\"unit\":\"1\",\"cost\":\"65000.0000\",\"price\":\"65000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"regency\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (405, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"298\",\"code\":\"69\",\"name\":\"Hennessy VS\",\"unit\":\"1\",\"cost\":\"50000.0000\",\"price\":\"50000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hennessy-vs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (406, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"189\",\"code\":\"7\",\"name\":\"Sticky rice\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sticky-rice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (407, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"299\",\"code\":\"70\",\"name\":\"Hennessy VSOP\",\"unit\":\"1\",\"cost\":\"80000.0000\",\"price\":\"80000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hennessy-vsop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (408, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"300\",\"code\":\"71\",\"name\":\"Origin Bitters Small\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"origin-bitters-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (409, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"301\",\"code\":\"72\",\"name\":\"Cointreau\",\"unit\":\"1\",\"cost\":\"25000.0000\",\"price\":\"25000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cointreau\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (410, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"302\",\"code\":\"73\",\"name\":\"LA.Merit\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lamerit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (411, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"303\",\"code\":\"74\",\"name\":\"Baron Romero\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baron-romero\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (412, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"304\",\"code\":\"75\",\"name\":\"Jack Williams\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jack-williams\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (413, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"305\",\"code\":\"76\",\"name\":\"Red Williams\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-williams\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (414, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"306\",\"code\":\"77\",\"name\":\"Red Label\",\"unit\":\"1\",\"cost\":\"12000.0000\",\"price\":\"12000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-label\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (415, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"307\",\"code\":\"78\",\"name\":\"Jack Daniels\",\"unit\":\"1\",\"cost\":\"20000.0000\",\"price\":\"20000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jack-daniels\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (416, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"308\",\"code\":\"79\",\"name\":\"Andre\",\"unit\":\"1\",\"cost\":\"12000.0000\",\"price\":\"12000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"andre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (417, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"190\",\"code\":\"8\",\"name\":\"Pad Thai (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (418, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"309\",\"code\":\"80\",\"name\":\"Heineken\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"heineken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (419, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"310\",\"code\":\"81\",\"name\":\"Star\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"star\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (420, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"311\",\"code\":\"82\",\"name\":\"Gulder\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gulder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (421, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"312\",\"code\":\"83\",\"name\":\"Star Raddler\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"star-raddler\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (422, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"313\",\"code\":\"84\",\"name\":\"Tiger\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tiger\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (423, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"314\",\"code\":\"85\",\"name\":\"Legend\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"legend\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (424, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"315\",\"code\":\"86\",\"name\":\"Desperado\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"desperado\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (425, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"316\",\"code\":\"87\",\"name\":\"Big Stout\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"big-stout\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (426, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"317\",\"code\":\"88\",\"name\":\"Absolute Vodka\",\"unit\":\"1\",\"cost\":\"15000.0000\",\"price\":\"15000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"absolute-vodka\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (427, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"318\",\"code\":\"89\",\"name\":\"Black Label\",\"unit\":\"1\",\"cost\":\"27000.0000\",\"price\":\"27000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"black-label\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (428, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"191\",\"code\":\"8b\",\"name\":\"Pad Thai (seafood)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (429, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"192\",\"code\":\"8c\",\"name\":\"Pad Thai (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (430, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"193\",\"code\":\"8d\",\"name\":\"Pad Thai (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (431, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"194\",\"code\":\"9\",\"name\":\"Stir-fried noodle with soy sauce (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-noodle-with-soy-sauce-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (432, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"319\",\"code\":\"90\",\"name\":\"Castillo White Wine\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"castillo-white-wine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (433, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"320\",\"code\":\"91\",\"name\":\"Castillo Red Wine\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"castillo-red-wine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (434, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"321\",\"code\":\"92\",\"name\":\"Carlo Rossi\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carlo-rossi\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (435, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"322\",\"code\":\"93\",\"name\":\"Gordons gin small\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-gin-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (436, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"323\",\"code\":\"94\",\"name\":\"Lirid red\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lirid-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (437, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"324\",\"code\":\"95\",\"name\":\"Nedenburg\",\"unit\":\"1\",\"cost\":\"16200.0000\",\"price\":\"16200.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nedenburg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (438, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"325\",\"code\":\"96\",\"name\":\"Agor\",\"unit\":\"1\",\"cost\":\"7500.0000\",\"price\":\"7500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"agor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (439, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"326\",\"code\":\"97\",\"name\":\"Escudo Rojo\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"escudo-rojo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (440, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"327\",\"code\":\"98\",\"name\":\"Origin big\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"origin-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (441, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"328\",\"code\":\"99\",\"name\":\"Remy Martin\",\"unit\":\"1\",\"cost\":\"72000.0000\",\"price\":\"72000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"remy-martin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (442, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"195\",\"code\":\"9b\",\"name\":\"Stir-fried noodle with soy sauce (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-noodle-with-soy-sauce-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (443, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"196\",\"code\":\"9c\",\"name\":\"Stir-fried noodle with soy sauce (seafood)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-noodle-with-soy-sauce-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (444, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"197\",\"code\":\"9d\",\"name\":\"Stir-fried noodle with soy sauce (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-noodle-with-soy-sauce-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (445, 'Quotation is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"1\",\"date\":\"2023-10-22 17:23:00\",\"reference_no\":\"QUOTE2023\\/10\\/0001\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"warehouse_id\":\"1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"note\":\"\",\"internal_note\":null,\"total\":\"15800.0000\",\"product_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1185.0000\",\"total_tax\":\"1185.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16985.0000\",\"status\":\"pending\",\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"attachment\":null,\"supplier_id\":\"0\",\"supplier\":null,\"hash\":\"cf1963102795463d58cbe380cd4a746874e1783c5d01e626ee897ff120f1236c\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1\",\"quote_id\":\"1\",\"product_id\":\"494\",\"product_code\":\"45\",\"product_name\":\"Red grilled chicken\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":null,\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"unit\":\"1\",\"image\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\"},{\"id\":\"2\",\"quote_id\":\"1\",\"product_id\":\"453\",\"product_code\":\"23\",\"product_name\":\"Chicken, tofu and seaweed in clear soup\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":null,\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"unit\":\"1\",\"image\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\"}]}', '2023-10-22 16:24:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (446, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"400\",\"code\":\"1\",\"name\":\"Chicken Biryani\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"3\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chicken-biryani\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (447, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"551\",\"code\":\"100\",\"name\":\"Jameson Black\",\"unit\":\"1\",\"cost\":\"32400.0000\",\"price\":\"32400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jameson-black\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (448, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"552\",\"code\":\"101\",\"name\":\"Jameson 1780\",\"unit\":\"1\",\"cost\":\"99000.0000\",\"price\":\"99000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jameson-1780\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (449, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"553\",\"code\":\"102\",\"name\":\"Chamdor\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chamdor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (450, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"554\",\"code\":\"103\",\"name\":\"Bacardi\",\"unit\":\"1\",\"cost\":\"12600.0000\",\"price\":\"12600.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bacardi\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (451, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"555\",\"code\":\"104\",\"name\":\"William Lawson\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"william-lawson\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (452, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"556\",\"code\":\"105\",\"name\":\"Four Cousins\",\"unit\":\"1\",\"cost\":\"6300.0000\",\"price\":\"6300.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"four-cousins\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (453, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"557\",\"code\":\"106\",\"name\":\"Bullet Can\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bullet-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (454, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"558\",\"code\":\"107\",\"name\":\"Red Bull\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-bull\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (455, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"559\",\"code\":\"108\",\"name\":\"Medium Stout\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medium-stout\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (456, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"560\",\"code\":\"109\",\"name\":\"Budwiser\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"budwiser\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (457, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"419\",\"code\":\"10a\",\"name\":\"Stir-fried glass noodles (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-glass-noodles-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (458, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"420\",\"code\":\"10b\",\"name\":\"Stir-fried glass noodles (seafood)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-glass-noodles-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (459, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"421\",\"code\":\"10c\",\"name\":\"Stir-fried glass noodles (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-glass-noodles-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (460, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"422\",\"code\":\"10d\",\"name\":\"Stir-fried glass noodles (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-glass-noodles-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (461, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"561\",\"code\":\"110\",\"name\":\"Trophy\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"trophy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (462, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"562\",\"code\":\"111\",\"name\":\"Trophy Stout\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"trophy-stout\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (463, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"563\",\"code\":\"112\",\"name\":\"Maltina\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maltina\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (464, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"564\",\"code\":\"113\",\"name\":\"Coke\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coke\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (465, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"565\",\"code\":\"114\",\"name\":\"Fanta\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fanta\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (466, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"566\",\"code\":\"115\",\"name\":\"Sprite\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sprite\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (467, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"567\",\"code\":\"116\",\"name\":\"Tonic Soda\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tonic-soda\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (468, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"568\",\"code\":\"117\",\"name\":\"Chivita Pack\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chivita-pack\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (469, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"569\",\"code\":\"118\",\"name\":\"Chivita Glass\",\"unit\":\"1\",\"cost\":\"1000.0000\",\"price\":\"1000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chivita-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (470, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"570\",\"code\":\"119\",\"name\":\"Chi-exotic Pack\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chi-exotic-pack\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (471, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"423\",\"code\":\"11a\",\"name\":\"Noodles in gravy sauce (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-gravy-sauce-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (472, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"424\",\"code\":\"11b\",\"name\":\"Noodles in gravy sauce (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-gravy-sauce-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (473, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"425\",\"code\":\"11c\",\"name\":\"Noodles in gravy sauce (seafood)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-gravy-sauce-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (474, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"426\",\"code\":\"11d\",\"name\":\"Noodles in gravy sauce (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-gravy-sauce-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (475, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"427\",\"code\":\"12\",\"name\":\"Baked shrimp with glass noodles\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baked-shrimp-with-glass-noodles\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (476, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"571\",\"code\":\"120\",\"name\":\"Chi-exotic Glass\",\"unit\":\"1\",\"cost\":\"1000.0000\",\"price\":\"1000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chi-exotic-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (477, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"572\",\"code\":\"121\",\"name\":\"Fresh Juice Glass\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fresh-juice-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (478, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"573\",\"code\":\"122\",\"name\":\"Lemon Juice Glass\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lemon-juice-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (479, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"574\",\"code\":\"123\",\"name\":\"Fried rice mixed\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (480, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"575\",\"code\":\"124\",\"name\":\"Fried egg\",\"unit\":\"1\",\"cost\":\"700.0000\",\"price\":\"700.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-egg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (481, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"576\",\"code\":\"125\",\"name\":\"Tequila shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tequila-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (482, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"577\",\"code\":\"126\",\"name\":\"Gordons shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (483, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"578\",\"code\":\"127\",\"name\":\"Campari shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"campari-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (484, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"579\",\"code\":\"128\",\"name\":\"Cointreau shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cointreau-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (485, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"580\",\"code\":\"129\",\"name\":\"Black label shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"black-label-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (486, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"428\",\"code\":\"13\",\"name\":\"Chicken northern style curry noodles\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chicken-northern-style-curry-noodles\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (487, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"581\",\"code\":\"130\",\"name\":\"Red label shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-label-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (488, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"582\",\"code\":\"131\",\"name\":\"Bacardi shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bacardi-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (489, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"583\",\"code\":\"132\",\"name\":\"Absolute vodka shot\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"absolute-vodka-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (490, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"584\",\"code\":\"133\",\"name\":\"X1 Vodka shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"x1-vodka-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (491, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"585\",\"code\":\"134\",\"name\":\"Hero\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hero\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (492, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"586\",\"code\":\"135\",\"name\":\"Andre rose\",\"unit\":\"1\",\"cost\":\"15000.0000\",\"price\":\"15000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"andre-rose\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (493, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"587\",\"code\":\"136\",\"name\":\"Spicy beef soup\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-beef-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (494, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"588\",\"code\":\"137\",\"name\":\"Nederburg\",\"unit\":\"1\",\"cost\":\"16200.0000\",\"price\":\"16200.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nederburg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (495, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"589\",\"code\":\"138\",\"name\":\"MOJITO\",\"unit\":\"1\",\"cost\":\"6000.0000\",\"price\":\"6000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mojito\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (496, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"590\",\"code\":\"139\",\"name\":\"LONG  ISLAND\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"long-island\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (497, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"429\",\"code\":\"14\",\"name\":\"Rice noodles with fish curry\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rice-noodles-with-fish-curry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (498, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"591\",\"code\":\"140\",\"name\":\"TIEGLILU\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tieglilu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (499, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"592\",\"code\":\"141\",\"name\":\"CHIMAN\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chiman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (500, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"593\",\"code\":\"142\",\"name\":\"CHAPMAN\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chapman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (501, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"594\",\"code\":\"143\",\"name\":\"Gordons BIG\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (502, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"595\",\"code\":\"144\",\"name\":\"Gordons SMALL\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (503, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"596\",\"code\":\"145\",\"name\":\"PINEAPPLE  JUICE\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pineapple-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (504, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"597\",\"code\":\"146\",\"name\":\"WATERMELON  JUICE\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"watermelon-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (505, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"598\",\"code\":\"147\",\"name\":\"ORANGE  JUICE\",\"unit\":\"1\",\"cost\":\"4000.0000\",\"price\":\"4000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orange-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (506, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"599\",\"code\":\"148\",\"name\":\"STRAWBERRY JUICE\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"strawberry-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (507, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"600\",\"code\":\"149\",\"name\":\"Water\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"water\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (508, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"430\",\"code\":\"14b\",\"name\":\"Rice noodles with coconut milk curry\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rice-noodles-with-coconut-milk-curry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (509, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"431\",\"code\":\"14c\",\"name\":\"Rice noodles with northern curry\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rice-noodles-with-northern-curry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (510, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"601\",\"code\":\"150\",\"name\":\"Ichitan yellow\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ichitan-yellow\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (511, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"602\",\"code\":\"151\",\"name\":\"Ichitan green\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ichitan-green\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (512, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"603\",\"code\":\"152\",\"name\":\"Takeaway\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"10\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"takeaway\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (513, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"604\",\"code\":\"153\",\"name\":\"Gordons gin\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-gin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (514, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"605\",\"code\":\"154\",\"name\":\"Two oceans\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"two-oceans\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (515, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"606\",\"code\":\"155\",\"name\":\"Sky vodka\",\"unit\":\"1\",\"cost\":\"15200.0000\",\"price\":\"15200.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sky-vodka\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (516, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"607\",\"code\":\"156\",\"name\":\"Martell VS\",\"unit\":\"1\",\"cost\":\"65000.0000\",\"price\":\"65000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"martell-vs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (517, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"608\",\"code\":\"157\",\"name\":\"Campari\",\"unit\":\"1\",\"cost\":\"20000.0000\",\"price\":\"20000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"campari\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (518, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"609\",\"code\":\"158\",\"name\":\"Baileys\",\"unit\":\"1\",\"cost\":\"15500.0000\",\"price\":\"15500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baileys\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (519, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"610\",\"code\":\"159\",\"name\":\"4th Street Red\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4th-street-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (520, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"432\",\"code\":\"15a\",\"name\":\"Noodles (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (521, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"433\",\"code\":\"15b\",\"name\":\"Noodles (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (522, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"434\",\"code\":\"15c\",\"name\":\"Noodles (Tom Yum)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-tom-yum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (523, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"435\",\"code\":\"16\",\"name\":\"Noodles in red tofu clear soup\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-red-tofu-clear-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (524, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"611\",\"code\":\"160\",\"name\":\"4th Street White\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4th-street-white\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (525, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"612\",\"code\":\"161\",\"name\":\"Mastinellis\",\"unit\":\"1\",\"cost\":\"9000.0000\",\"price\":\"9000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mastinellis\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (526, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"613\",\"code\":\"162\",\"name\":\"Omega Tequila\",\"unit\":\"1\",\"cost\":\"25000.0000\",\"price\":\"25000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omega-tequila\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (527, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"614\",\"code\":\"163\",\"name\":\"Martell Blue Swift\",\"unit\":\"1\",\"cost\":\"100000.0000\",\"price\":\"100000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"martell-blue-swift\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (528, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"615\",\"code\":\"164\",\"name\":\"Sierra Tequila\",\"unit\":\"1\",\"cost\":\"30000.0000\",\"price\":\"30000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sierra-tequila\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (529, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"616\",\"code\":\"165\",\"name\":\"Bombay Sapphire\",\"unit\":\"1\",\"cost\":\"12500.0000\",\"price\":\"12500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bombay-sapphire\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (530, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"617\",\"code\":\"166\",\"name\":\"Smirnoff X1\",\"unit\":\"1\",\"cost\":\"6500.0000\",\"price\":\"6500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"smirnoff-x1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (531, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"618\",\"code\":\"167\",\"name\":\"Teeling Whisky\",\"unit\":\"1\",\"cost\":\"25000.0000\",\"price\":\"25000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"teeling-whisky\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (532, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"619\",\"code\":\"168\",\"name\":\"Pascas\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pascas\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (533, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"620\",\"code\":\"169\",\"name\":\"Flirt Vodka\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flirt-vodka\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (534, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"621\",\"code\":\"170\",\"name\":\"Ichitan orange\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ichitan-orange\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (535, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"436\",\"code\":\"17a\",\"name\":\"Green curry (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-curry-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (536, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"437\",\"code\":\"17b\",\"name\":\"Green curry (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-curry-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (537, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"438\",\"code\":\"17c\",\"name\":\"Green curry (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-curry-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (538, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"439\",\"code\":\"17d\",\"name\":\"Green curry (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-curry-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (539, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"440\",\"code\":\"18a\",\"name\":\"Red curry (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-curry-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (540, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"441\",\"code\":\"18b\",\"name\":\"Red curry (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-curry-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (541, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"442\",\"code\":\"18c\",\"name\":\"Red curry (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-curry-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (542, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"443\",\"code\":\"18d\",\"name\":\"Red curry (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-curry-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (543, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"444\",\"code\":\"19a\",\"name\":\"Panang curry (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panang-curry-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (544, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"445\",\"code\":\"19b\",\"name\":\"Panang curry (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panang-curry-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (545, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"446\",\"code\":\"19c\",\"name\":\"Panang curry (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panang-curry-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (546, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"447\",\"code\":\"19d\",\"name\":\"Panang curry (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panang-curry-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (547, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"401\",\"code\":\"2\",\"name\":\"Lamb Biryani\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lamb-biryani\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (548, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"448\",\"code\":\"20\",\"name\":\"Chicken leg curry\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chicken-leg-curry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (549, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"449\",\"code\":\"21a\",\"name\":\"Massaman Curry (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"massaman-curry-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (550, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"450\",\"code\":\"21b\",\"name\":\"Massaman Curry (beef)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"massaman-curry-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (551, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"451\",\"code\":\"21c\",\"name\":\"Massaman Curry (lamb)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"massaman-curry-lamb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (552, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"452\",\"code\":\"22\",\"name\":\"Sour soup with fish\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sour-soup-with-fish\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (553, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"453\",\"code\":\"23\",\"name\":\"Chicken, tofu and seaweed in clear soup\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chicken-tofu-and-seaweed-in-clear-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (554, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"454\",\"code\":\"24\",\"name\":\"Tom Yum (shrimp\\/clear soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-shrimpclear-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (555, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"455\",\"code\":\"24b\",\"name\":\"Tom Yum (shrimp\\/creamy soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-shrimpcreamy-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (556, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"456\",\"code\":\"24c\",\"name\":\"Tom Yum (seafood\\/clear soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-seafoodclear-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (557, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"457\",\"code\":\"24d\",\"name\":\"Tom Yum (seafood\\/creamy soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-seafoodcreamy-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (558, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"458\",\"code\":\"25\",\"name\":\"Boiled chicken in fish sauce\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"boiled-chicken-in-fish-sauce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (559, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"459\",\"code\":\"26\",\"name\":\"Stewed eggs\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stewed-eggs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (560, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"460\",\"code\":\"27a\",\"name\":\"Stir-fried with holy basil (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-holy-basil-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (561, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"461\",\"code\":\"27b\",\"name\":\"Stir-fried with holy basil (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-holy-basil-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (562, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"462\",\"code\":\"27c\",\"name\":\"Stir-fried with holy basil (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-holy-basil-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (563, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"463\",\"code\":\"27d\",\"name\":\"Stir-fried with holy basil (mixed meat)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-holy-basil-mixed-meat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (564, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"464\",\"code\":\"28a\",\"name\":\"Stir-fried with bell peppers (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-bell-peppers-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (565, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"465\",\"code\":\"28b\",\"name\":\"Stir-fried with bell peppers (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-bell-peppers-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (566, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"466\",\"code\":\"28c\",\"name\":\"Stir-fried with bell peppers (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-bell-peppers-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (567, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"467\",\"code\":\"28d\",\"name\":\"Stir-fried with bell peppers (mixed meat)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-bell-peppers-mixed-meat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (568, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"468\",\"code\":\"29\",\"name\":\"Stir-fried chicken with ginger\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-chicken-with-ginger\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (569, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"402\",\"code\":\"3\",\"name\":\"Steamed rice topped with chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"steamed-rice-topped-with-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (570, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"469\",\"code\":\"30\",\"name\":\"Stir-fried mixed vegetables\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-mixed-vegetables\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (571, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"470\",\"code\":\"30b\",\"name\":\"Stir-fried shrimp mixed vegetables\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-shrimp-mixed-vegetables\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (572, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"471\",\"code\":\"30c\",\"name\":\"Stir-fried beef mixed vegetables\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-beef-mixed-vegetables\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (573, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"472\",\"code\":\"31\",\"name\":\"Sweet and sour stir fry\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sweet-and-sour-stir-fry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (574, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"473\",\"code\":\"32\",\"name\":\"Fried boiled egg with tamarind sauce\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-boiled-egg-with-tamarind-sauce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (575, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"474\",\"code\":\"33\",\"name\":\"Stir-fried crab with curry powder\",\"unit\":\"1\",\"cost\":\"10200.0000\",\"price\":\"10200.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-crab-with-curry-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (576, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"475\",\"code\":\"34\",\"name\":\"Spicy glass noodles salad\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-glass-noodles-salad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (577, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"476\",\"code\":\"35\",\"name\":\"Spicy papaya salad (Thai style)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-papaya-salad-thai-style\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (578, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"477\",\"code\":\"35b\",\"name\":\"Spicy papaya salad (fermented fish)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-papaya-salad-fermented-fish\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (579, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"478\",\"code\":\"35c\",\"name\":\"Spicy papaya salad (mixed ingrediets)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-papaya-salad-mixed-ingrediets\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (580, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"479\",\"code\":\"36\",\"name\":\"Spicy mixed seafood salad\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-mixed-seafood-salad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (581, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"480\",\"code\":\"37a\",\"name\":\"Spicy minced (beef)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-minced-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (582, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"481\",\"code\":\"37b\",\"name\":\"Spicy minced (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-minced-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (583, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"482\",\"code\":\"37c\",\"name\":\"Spicy chopped meat salad (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-chopped-meat-salad-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (584, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"483\",\"code\":\"37d\",\"name\":\"Spicy chopped meat salad (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-chopped-meat-salad-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (585, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"484\",\"code\":\"38a\",\"name\":\"Fried spring rolls (stuffed with chicken)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-spring-rolls-stuffed-with-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (586, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"485\",\"code\":\"38b\",\"name\":\"Fried spring rolls (stuffed with shrimp)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-spring-rolls-stuffed-with-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (587, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"486\",\"code\":\"38c\",\"name\":\"Fried spring rolls (stuffed with vegetables)\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-spring-rolls-stuffed-with-vegetables\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (588, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"487\",\"code\":\"38d\",\"name\":\"Fried spring rolls (stuffed with cheese)\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-spring-rolls-stuffed-with-cheese\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (589, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"488\",\"code\":\"39\",\"name\":\"Hat Yai-style fried chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hat-yai-style-fried-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (590, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"489\",\"code\":\"40\",\"name\":\"Fried shrimp\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (591, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"490\",\"code\":\"41\",\"name\":\"Fried squid\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-squid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (592, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"491\",\"code\":\"42\",\"name\":\"Fried chicken wings\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-chicken-wings\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (593, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"492\",\"code\":\"43\",\"name\":\"Sun-dried beef\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sun-dried-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (594, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"493\",\"code\":\"44\",\"name\":\"Deep fried chicken rolls (8 pcs)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"deep-fried-chicken-rolls-8-pcs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (595, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"494\",\"code\":\"45\",\"name\":\"Red grilled chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-grilled-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (596, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"495\",\"code\":\"46\",\"name\":\"Fried fish with three flavors sauce\",\"unit\":\"1\",\"cost\":\"13000.0000\",\"price\":\"13000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-fish-with-three-flavors-sauce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (597, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"496\",\"code\":\"47\",\"name\":\"Fried fish with chili sauce\",\"unit\":\"1\",\"cost\":\"13000.0000\",\"price\":\"13000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-fish-with-chili-sauce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (598, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"497\",\"code\":\"48\",\"name\":\"Beef hot pan\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"beef-hot-pan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (599, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"498\",\"code\":\"49\",\"name\":\"Seafood hot pan\",\"unit\":\"1\",\"cost\":\"10900.0000\",\"price\":\"10900.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"seafood-hot-pan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (600, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"403\",\"code\":\"4a\",\"name\":\"Fried rice with chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-with-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (601, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"404\",\"code\":\"4b\",\"name\":\"Fried rice with shrimps\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-with-shrimps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (602, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"405\",\"code\":\"4c\",\"name\":\"Fried rice with seafood\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-with-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (603, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"406\",\"code\":\"4d\",\"name\":\"Fried rice with beef\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-with-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (604, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"407\",\"code\":\"4e\",\"name\":\"Fried rice mixed\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (605, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"408\",\"code\":\"5\",\"name\":\"Tom yum fried rice\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-fried-rice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (606, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"499\",\"code\":\"50\",\"name\":\"Mixed set (large)\",\"unit\":\"1\",\"cost\":\"15000.0000\",\"price\":\"15000.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mixed-set-large\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (607, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"500\",\"code\":\"50b\",\"name\":\"Mixed set (small)\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mixed-set-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (608, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"501\",\"code\":\"51\",\"name\":\"Pandan custard bread\",\"unit\":\"1\",\"cost\":\"5500.0000\",\"price\":\"5500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pandan-custard-bread\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (609, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"502\",\"code\":\"52\",\"name\":\"Sago pearls\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sago-pearls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (610, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"503\",\"code\":\"53\",\"name\":\"Glutinous rice balls\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glutinous-rice-balls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (611, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"504\",\"code\":\"54\",\"name\":\"Crispy red ruby\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"crispy-red-ruby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (612, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"505\",\"code\":\"55\",\"name\":\"Cendol in coconut milk\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cendol-in-coconut-milk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (613, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"506\",\"code\":\"56\",\"name\":\"Longan juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"longan-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (614, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"507\",\"code\":\"57\",\"name\":\"Chrysanthemum juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chrysanthemum-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (615, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"508\",\"code\":\"58\",\"name\":\"Roselle juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"roselle-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (616, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"509\",\"code\":\"59\",\"name\":\"Bael fruit juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bael-fruit-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (617, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"409\",\"code\":\"6\",\"name\":\"Rice\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (618, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"510\",\"code\":\"60\",\"name\":\"Pandan juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pandan-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (619, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"511\",\"code\":\"61\",\"name\":\"Thai iced black coffee\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"thai-iced-black-coffee\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (620, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"512\",\"code\":\"62\",\"name\":\"Thai tea\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"thai-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (621, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"513\",\"code\":\"63\",\"name\":\"Milk tea\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"milk-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (622, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"514\",\"code\":\"64\",\"name\":\"Green tea\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (623, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"515\",\"code\":\"65\",\"name\":\"Chang beer (bottle)\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chang-beer-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (624, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"516\",\"code\":\"65b\",\"name\":\"Chang beer (can)\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chang-beer-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (625, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"517\",\"code\":\"66\",\"name\":\"Leo beer\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"leo-beer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (626, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"518\",\"code\":\"67\",\"name\":\"Singha beer\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"singha-beer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (627, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"519\",\"code\":\"68\",\"name\":\"Regency\",\"unit\":\"1\",\"cost\":\"65000.0000\",\"price\":\"65000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"regency\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (628, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"520\",\"code\":\"69\",\"name\":\"Hennessy VS\",\"unit\":\"1\",\"cost\":\"50000.0000\",\"price\":\"50000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hennessy-vs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (629, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"410\",\"code\":\"7\",\"name\":\"Sticky rice\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sticky-rice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (630, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"521\",\"code\":\"70\",\"name\":\"Hennessy VSOP\",\"unit\":\"1\",\"cost\":\"80000.0000\",\"price\":\"80000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hennessy-vsop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (631, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"522\",\"code\":\"71\",\"name\":\"Origin Bitters Small\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"origin-bitters-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (632, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"523\",\"code\":\"72\",\"name\":\"Cointreau\",\"unit\":\"1\",\"cost\":\"25000.0000\",\"price\":\"25000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cointreau\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (633, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"524\",\"code\":\"73\",\"name\":\"LA.Merit\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lamerit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (634, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"525\",\"code\":\"74\",\"name\":\"Baron Romero\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baron-romero\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (635, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"526\",\"code\":\"75\",\"name\":\"Jack Williams\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jack-williams\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (636, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"527\",\"code\":\"76\",\"name\":\"Red Williams\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-williams\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (637, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"528\",\"code\":\"77\",\"name\":\"Red Label\",\"unit\":\"1\",\"cost\":\"12000.0000\",\"price\":\"12000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-label\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (638, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"529\",\"code\":\"78\",\"name\":\"Jack Daniels\",\"unit\":\"1\",\"cost\":\"20000.0000\",\"price\":\"20000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jack-daniels\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (639, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"530\",\"code\":\"79\",\"name\":\"Andre\",\"unit\":\"1\",\"cost\":\"12000.0000\",\"price\":\"12000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"andre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (640, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"531\",\"code\":\"80\",\"name\":\"Heineken\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"heineken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (641, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"532\",\"code\":\"81\",\"name\":\"Star\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"star\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (642, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"533\",\"code\":\"82\",\"name\":\"Gulder\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gulder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (643, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"534\",\"code\":\"83\",\"name\":\"Star Raddler\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"star-raddler\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (644, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"535\",\"code\":\"84\",\"name\":\"Tiger\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tiger\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (645, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"536\",\"code\":\"85\",\"name\":\"Legend\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"legend\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (646, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"537\",\"code\":\"86\",\"name\":\"Desperado\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"desperado\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (647, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"538\",\"code\":\"87\",\"name\":\"Big Stout\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"big-stout\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (648, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"539\",\"code\":\"88\",\"name\":\"Absolute Vodka\",\"unit\":\"1\",\"cost\":\"15000.0000\",\"price\":\"15000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"absolute-vodka\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (649, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"540\",\"code\":\"89\",\"name\":\"Black Label\",\"unit\":\"1\",\"cost\":\"27000.0000\",\"price\":\"27000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"black-label\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (650, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"411\",\"code\":\"8a\",\"name\":\"Pad Thai (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (651, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"412\",\"code\":\"8b\",\"name\":\"Pad Thai (seafood)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (652, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"413\",\"code\":\"8c\",\"name\":\"Pad Thai (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (653, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"414\",\"code\":\"8d\",\"name\":\"Pad Thai (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (654, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"541\",\"code\":\"90\",\"name\":\"Castillo White Wine\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"castillo-white-wine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (655, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"542\",\"code\":\"91\",\"name\":\"Castillo Red Wine\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"castillo-red-wine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (656, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"543\",\"code\":\"92\",\"name\":\"Carlo Rossi\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carlo-rossi\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (657, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"544\",\"code\":\"93\",\"name\":\"Gordons gin small\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-gin-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (658, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"545\",\"code\":\"94\",\"name\":\"Lirid red\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lirid-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (659, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"546\",\"code\":\"95\",\"name\":\"Nedenburg\",\"unit\":\"1\",\"cost\":\"16200.0000\",\"price\":\"16200.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nedenburg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (660, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"547\",\"code\":\"96\",\"name\":\"Agor\",\"unit\":\"1\",\"cost\":\"7500.0000\",\"price\":\"7500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"agor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (661, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"548\",\"code\":\"97\",\"name\":\"Escudo Rojo\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"escudo-rojo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (662, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"549\",\"code\":\"98\",\"name\":\"Origin big\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"origin-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (663, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"550\",\"code\":\"99\",\"name\":\"Remy Martin\",\"unit\":\"1\",\"cost\":\"72000.0000\",\"price\":\"72000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"remy-martin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (664, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"415\",\"code\":\"9a\",\"name\":\"Stir-fried noodle with soy sauce (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-noodle-with-soy-sauce-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (665, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"416\",\"code\":\"9b\",\"name\":\"Stir-fried noodle with soy sauce (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-noodle-with-soy-sauce-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (666, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"417\",\"code\":\"9c\",\"name\":\"Stir-fried noodle with soy sauce (seafood)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-noodle-with-soy-sauce-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (667, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"418\",\"code\":\"9d\",\"name\":\"Stir-fried noodle with soy sauce (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-noodle-with-soy-sauce-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-22 17:12:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (668, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"47\",\"date\":\"2023-10-22 18:20:44\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"38915.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"588\",\"suspend_id\":\"47\",\"product_id\":\"3\",\"product_code\":\"PR3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"589\",\"suspend_id\":\"47\",\"product_id\":\"56\",\"product_code\":\"PR56\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"590\",\"suspend_id\":\"47\",\"product_id\":\"24\",\"product_code\":\"PR43\",\"product_name\":\"Bael fruit juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"591\",\"suspend_id\":\"47\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"592\",\"suspend_id\":\"47\",\"product_id\":\"40\",\"product_code\":\"PR36\",\"product_name\":\"Sago pearls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"593\",\"suspend_id\":\"47\",\"product_id\":\"729\",\"product_code\":\"56\",\"product_name\":\"Longan juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-22 17:22:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (669, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"49\",\"date\":\"2023-10-22 19:14:50\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"7417.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"PAEW\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"638\",\"suspend_id\":\"49\",\"product_id\":\"707\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-22 18:39:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (670, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"50\",\"date\":\"2023-10-22 19:49:29\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"28810.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"667\",\"suspend_id\":\"50\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"668\",\"suspend_id\":\"50\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"669\",\"suspend_id\":\"50\",\"product_id\":\"847\",\"product_code\":\"PR218\",\"product_name\":\"MILKCHECK\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"670\",\"suspend_id\":\"50\",\"product_id\":\"684\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-22 19:10:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (671, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"51\",\"date\":\"2023-10-22 20:24:18\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"26660.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"697\",\"suspend_id\":\"51\",\"product_id\":\"754\",\"product_code\":\"80\",\"product_name\":\"Heineken\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"698\",\"suspend_id\":\"51\",\"product_id\":\"624\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"699\",\"suspend_id\":\"51\",\"product_id\":\"760\",\"product_code\":\"86\",\"product_name\":\"Desperado\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"700\",\"suspend_id\":\"51\",\"product_id\":\"631\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"701\",\"suspend_id\":\"51\",\"product_id\":\"720\",\"product_code\":\"48\",\"product_name\":\"Beef hot pan\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"702\",\"suspend_id\":\"51\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-22 19:52:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (672, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"48\",\"date\":\"2023-10-22 20:07:38\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"31\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"142007.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T8-9\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"680\",\"suspend_id\":\"48\",\"product_id\":\"625\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"681\",\"suspend_id\":\"48\",\"product_id\":\"722\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"682\",\"suspend_id\":\"48\",\"product_id\":\"786\",\"product_code\":\"112\",\"product_name\":\"Maltina\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"683\",\"suspend_id\":\"48\",\"product_id\":\"845\",\"product_code\":\"PR216\",\"product_name\":\"GUINNESS BIG\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"21000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"684\",\"suspend_id\":\"48\",\"product_id\":\"846\",\"product_code\":\"PR217\",\"product_name\":\"COCACOLA\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"685\",\"suspend_id\":\"48\",\"product_id\":\"788\",\"product_code\":\"114\",\"product_name\":\"Fanta\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"686\",\"suspend_id\":\"48\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"7.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"687\",\"suspend_id\":\"48\",\"product_id\":\"625\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"63200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"688\",\"suspend_id\":\"48\",\"product_id\":\"730\",\"product_code\":\"57\",\"product_name\":\"Chrysanthemum juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-22 20:32:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (673, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"44\",\"date\":\"2023-10-22 21:34:54\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"25047.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Madam Fon\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"727\",\"suspend_id\":\"44\",\"product_id\":\"31\",\"product_code\":\"PR40\",\"product_name\":\"Longan juice \",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"728\",\"suspend_id\":\"44\",\"product_id\":\"71\",\"product_code\":\"PR75\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"729\",\"suspend_id\":\"44\",\"product_id\":\"294\",\"product_code\":\"65\",\"product_name\":\"Chang beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"730\",\"suspend_id\":\"44\",\"product_id\":\"625\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"731\",\"suspend_id\":\"44\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"732\",\"suspend_id\":\"44\",\"product_id\":\"625\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-22 20:35:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (674, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"52\",\"date\":\"2023-10-22 21:32:43\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"31497.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"723\",\"suspend_id\":\"52\",\"product_id\":\"712\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"724\",\"suspend_id\":\"52\",\"product_id\":\"713\",\"product_code\":\"41\",\"product_name\":\"Fried squid\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"725\",\"suspend_id\":\"52\",\"product_id\":\"737\",\"product_code\":\"64\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"726\",\"suspend_id\":\"52\",\"product_id\":\"723\",\"product_code\":\"50b\",\"product_name\":\"Mixed set (small)\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-22 20:36:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (675, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"54\",\"date\":\"2023-10-23 11:06:14\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"8600.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"743\",\"suspend_id\":\"54\",\"product_id\":\"848\",\"product_code\":\"PR219\",\"product_name\":\"HOT TEA\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 10:06:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (676, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"55\",\"date\":\"2023-10-23 11:08:32\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"9030.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"745\",\"suspend_id\":\"55\",\"product_id\":\"625\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"746\",\"suspend_id\":\"55\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 10:08:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (677, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"56\",\"date\":\"2023-10-23 11:39:03\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"537.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"VIP1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"747\",\"suspend_id\":\"56\",\"product_id\":\"789\",\"product_code\":\"115\",\"product_name\":\"Sprite\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 10:39:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (678, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"57\",\"date\":\"2023-10-23 12:07:02\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"18060.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"760\",\"suspend_id\":\"57\",\"product_id\":\"692\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"761\",\"suspend_id\":\"57\",\"product_id\":\"712\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"762\",\"suspend_id\":\"57\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 11:19:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (679, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"53\",\"date\":\"2023-10-23 12:06:28\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"27\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"102340.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"748\",\"suspend_id\":\"53\",\"product_id\":\"683\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"749\",\"suspend_id\":\"53\",\"product_id\":\"715\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"750\",\"suspend_id\":\"53\",\"product_id\":\"650\",\"product_code\":\"12\",\"product_name\":\"Baked shrimp with glass noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"751\",\"suspend_id\":\"53\",\"product_id\":\"698\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"752\",\"suspend_id\":\"53\",\"product_id\":\"704\",\"product_code\":\"37b\",\"product_name\":\"Spicy minced (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"753\",\"suspend_id\":\"53\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"754\",\"suspend_id\":\"53\",\"product_id\":\"691\",\"product_code\":\"29\",\"product_name\":\"Stir-fried chicken with ginger\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"755\",\"suspend_id\":\"53\",\"product_id\":\"631\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"756\",\"suspend_id\":\"53\",\"product_id\":\"632\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"757\",\"suspend_id\":\"53\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"758\",\"suspend_id\":\"53\",\"product_id\":\"849\",\"product_code\":\"PR999\",\"product_name\":\"FISH SAUCE CHILI\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"759\",\"suspend_id\":\"53\",\"product_id\":\"850\",\"product_code\":\"PR1000\",\"product_name\":\"SEAFOOD SAUCE\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 11:32:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (680, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"59\",\"date\":\"2023-10-23 17:20:28\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"55147.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"PEAW\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"789\",\"suspend_id\":\"59\",\"product_id\":\"655\",\"product_code\":\"15a\",\"product_name\":\"Noodles (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"790\",\"suspend_id\":\"59\",\"product_id\":\"735\",\"product_code\":\"62\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"791\",\"suspend_id\":\"59\",\"product_id\":\"683\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"792\",\"suspend_id\":\"59\",\"product_id\":\"626\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"793\",\"suspend_id\":\"59\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"794\",\"suspend_id\":\"59\",\"product_id\":\"697\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"795\",\"suspend_id\":\"59\",\"product_id\":\"786\",\"product_code\":\"112\",\"product_name\":\"Maltina\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 18:00:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (681, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"62\",\"date\":\"2023-10-23 22:02:04\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"46870.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T7\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"959\",\"suspend_id\":\"62\",\"product_id\":\"624\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"960\",\"suspend_id\":\"62\",\"product_id\":\"626\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"961\",\"suspend_id\":\"62\",\"product_id\":\"754\",\"product_code\":\"80\",\"product_name\":\"Heineken\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"962\",\"suspend_id\":\"62\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"963\",\"suspend_id\":\"62\",\"product_id\":\"789\",\"product_code\":\"115\",\"product_name\":\"Sprite\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"964\",\"suspend_id\":\"62\",\"product_id\":\"757\",\"product_code\":\"83\",\"product_name\":\"Star Raddler\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"965\",\"suspend_id\":\"62\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 21:02:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (682, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"63\",\"date\":\"2023-10-23 22:22:08\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"15\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"60092.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T5\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"981\",\"suspend_id\":\"63\",\"product_id\":\"684\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"982\",\"suspend_id\":\"63\",\"product_id\":\"754\",\"product_code\":\"80\",\"product_name\":\"Heineken\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"983\",\"suspend_id\":\"63\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"984\",\"suspend_id\":\"63\",\"product_id\":\"820\",\"product_code\":\"146\",\"product_name\":\"WATERMELON  JUICE\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"3.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"985\",\"suspend_id\":\"63\",\"product_id\":\"722\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"986\",\"suspend_id\":\"63\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"987\",\"suspend_id\":\"63\",\"product_id\":\"737\",\"product_code\":\"64\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"988\",\"suspend_id\":\"63\",\"product_id\":\"745\",\"product_code\":\"71\",\"product_name\":\"Origin Bitters Small\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 21:24:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (683, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"66\",\"date\":\"2023-10-23 23:29:34\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"28702.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"out\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1062\",\"suspend_id\":\"66\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"1618.1800\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1063\",\"suspend_id\":\"66\",\"product_id\":\"626\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 22:29:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (684, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"60\",\"date\":\"2023-10-23 23:25:01\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"14\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"190490.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"PEAW\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1053\",\"suspend_id\":\"60\",\"product_id\":\"683\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1054\",\"suspend_id\":\"60\",\"product_id\":\"676\",\"product_code\":\"23\",\"product_name\":\"Chicken, tofu and seaweed in clear soup\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1055\",\"suspend_id\":\"60\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1056\",\"suspend_id\":\"60\",\"product_id\":\"742\",\"product_code\":\"68\",\"product_name\":\"Regency\",\"net_unit_price\":\"65000.0000\",\"unit_price\":\"65000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"130000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"65000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1057\",\"suspend_id\":\"60\",\"product_id\":\"795\",\"product_code\":\"121\",\"product_name\":\"Fresh Juice Glass\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1058\",\"suspend_id\":\"60\",\"product_id\":\"741\",\"product_code\":\"67\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1059\",\"suspend_id\":\"60\",\"product_id\":\"736\",\"product_code\":\"63\",\"product_name\":\"Milk tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1060\",\"suspend_id\":\"60\",\"product_id\":\"646\",\"product_code\":\"11a\",\"product_name\":\"Noodles in gravy sauce (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1061\",\"suspend_id\":\"60\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 22:34:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (685, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"65\",\"date\":\"2023-10-23 22:52:20\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"25477.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T11\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1014\",\"suspend_id\":\"65\",\"product_id\":\"692\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1015\",\"suspend_id\":\"65\",\"product_id\":\"627\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1016\",\"suspend_id\":\"65\",\"product_id\":\"624\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 22:36:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (686, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"61\",\"date\":\"2023-10-23 22:41:04\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"33217.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"UM\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"994\",\"suspend_id\":\"61\",\"product_id\":\"741\",\"product_code\":\"67\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"995\",\"suspend_id\":\"61\",\"product_id\":\"722\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"996\",\"suspend_id\":\"61\",\"product_id\":\"646\",\"product_code\":\"11a\",\"product_name\":\"Noodles in gravy sauce (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"997\",\"suspend_id\":\"61\",\"product_id\":\"736\",\"product_code\":\"63\",\"product_name\":\"Milk tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 22:38:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (687, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"58\",\"date\":\"2023-10-23 23:37:43\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"18\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"113412.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"FON\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1069\",\"suspend_id\":\"58\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1070\",\"suspend_id\":\"58\",\"product_id\":\"822\",\"product_code\":\"148\",\"product_name\":\"STRAWBERRY JUICE\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1071\",\"suspend_id\":\"58\",\"product_id\":\"742\",\"product_code\":\"68\",\"product_name\":\"Regency\",\"net_unit_price\":\"65000.0000\",\"unit_price\":\"65000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"65000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"65000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1072\",\"suspend_id\":\"58\",\"product_id\":\"790\",\"product_code\":\"116\",\"product_name\":\"Tonic Soda\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"5.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1073\",\"suspend_id\":\"58\",\"product_id\":\"846\",\"product_code\":\"PR217\",\"product_name\":\"COCACOLA\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1074\",\"suspend_id\":\"58\",\"product_id\":\"781\",\"product_code\":\"107\",\"product_name\":\"Red Bull\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1075\",\"suspend_id\":\"58\",\"product_id\":\"707\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1076\",\"suspend_id\":\"58\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1077\",\"suspend_id\":\"58\",\"product_id\":\"697\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 22:44:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (688, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"64\",\"date\":\"2023-10-23 23:37:31\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"24080.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T5\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1064\",\"suspend_id\":\"64\",\"product_id\":\"738\",\"product_code\":\"65\",\"product_name\":\"Chang beer (bottle)\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1065\",\"suspend_id\":\"64\",\"product_id\":\"745\",\"product_code\":\"71\",\"product_name\":\"Origin Bitters Small\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1066\",\"suspend_id\":\"64\",\"product_id\":\"626\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1067\",\"suspend_id\":\"64\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1068\",\"suspend_id\":\"64\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-23 22:46:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (689, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"67\",\"date\":\"2023-10-24 12:35:06\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"18705.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1078\",\"suspend_id\":\"67\",\"product_id\":\"703\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1079\",\"suspend_id\":\"67\",\"product_id\":\"632\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1080\",\"suspend_id\":\"67\",\"product_id\":\"736\",\"product_code\":\"63\",\"product_name\":\"Milk tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1081\",\"suspend_id\":\"67\",\"product_id\":\"851\",\"product_code\":\"PR220\",\"product_name\":\"SING BEER CAN\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-24 11:35:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (690, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"69\",\"date\":\"2023-10-24 13:51:22\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"10105.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1087\",\"suspend_id\":\"69\",\"product_id\":\"683\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1088\",\"suspend_id\":\"69\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-24 12:51:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (691, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"70\",\"date\":\"2023-10-24 19:21:31\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"45150.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1089\",\"suspend_id\":\"70\",\"product_id\":\"824\",\"product_code\":\"150\",\"product_name\":\"Ichitan yellow\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1090\",\"suspend_id\":\"70\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1091\",\"suspend_id\":\"70\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1092\",\"suspend_id\":\"70\",\"product_id\":\"658\",\"product_code\":\"16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1093\",\"suspend_id\":\"70\",\"product_id\":\"699\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1094\",\"suspend_id\":\"70\",\"product_id\":\"711\",\"product_code\":\"39\",\"product_name\":\"Hat Yai-style fried chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1095\",\"suspend_id\":\"70\",\"product_id\":\"695\",\"product_code\":\"31\",\"product_name\":\"Sweet and sour stir fry\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-24 18:21:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (692, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"71\",\"date\":\"2023-10-24 19:23:40\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"23435.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1096\",\"suspend_id\":\"71\",\"product_id\":\"736\",\"product_code\":\"63\",\"product_name\":\"Milk tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1097\",\"suspend_id\":\"71\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1098\",\"suspend_id\":\"71\",\"product_id\":\"683\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1099\",\"suspend_id\":\"71\",\"product_id\":\"646\",\"product_code\":\"11a\",\"product_name\":\"Noodles in gravy sauce (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-24 18:24:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (693, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"68\",\"date\":\"2023-10-24 13:43:04\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"4300.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Fon\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1084\",\"suspend_id\":\"68\",\"product_id\":\"790\",\"product_code\":\"116\",\"product_name\":\"Tonic Soda\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1085\",\"suspend_id\":\"68\",\"product_id\":\"781\",\"product_code\":\"107\",\"product_name\":\"Red Bull\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1086\",\"suspend_id\":\"68\",\"product_id\":\"790\",\"product_code\":\"116\",\"product_name\":\"Tonic Soda\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-24 18:25:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (694, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"72\",\"date\":\"2023-10-24 19:57:44\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"39345.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1104\",\"suspend_id\":\"72\",\"product_id\":\"684\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1105\",\"suspend_id\":\"72\",\"product_id\":\"852\",\"product_code\":\"4f\",\"product_name\":\"Fried rice with vegetable\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1106\",\"suspend_id\":\"72\",\"product_id\":\"707\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1107\",\"suspend_id\":\"72\",\"product_id\":\"848\",\"product_code\":\"PR219\",\"product_name\":\"HOT TEA\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-24 19:01:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (695, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"73\",\"date\":\"2023-10-24 22:29:51\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"18705.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T5\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1108\",\"suspend_id\":\"73\",\"product_id\":\"651\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1109\",\"suspend_id\":\"73\",\"product_id\":\"848\",\"product_code\":\"PR219\",\"product_name\":\"HOT TEA\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1110\",\"suspend_id\":\"73\",\"product_id\":\"816\",\"product_code\":\"142\",\"product_name\":\"CHAPMAN\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1111\",\"suspend_id\":\"73\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-24 21:44:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (696, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"74\",\"date\":\"2023-10-24 23:17:55\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"20425.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T5\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1112\",\"suspend_id\":\"74\",\"product_id\":\"848\",\"product_code\":\"PR219\",\"product_name\":\"HOT TEA\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1113\",\"suspend_id\":\"74\",\"product_id\":\"722\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-24 22:52:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (697, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"78\",\"date\":\"2023-10-25 18:10:07\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"11825.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1127\",\"suspend_id\":\"78\",\"product_id\":\"738\",\"product_code\":\"65\",\"product_name\":\"Chang beer (bottle)\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1128\",\"suspend_id\":\"78\",\"product_id\":\"741\",\"product_code\":\"67\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1129\",\"suspend_id\":\"78\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-25 17:11:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (698, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"75\",\"date\":\"2023-10-25 17:40:12\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"41495.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1114\",\"suspend_id\":\"75\",\"product_id\":\"691\",\"product_code\":\"29\",\"product_name\":\"Stir-fried chicken with ginger\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1115\",\"suspend_id\":\"75\",\"product_id\":\"696\",\"product_code\":\"32\",\"product_name\":\"Fried boiled egg with tamarind sauce\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1116\",\"suspend_id\":\"75\",\"product_id\":\"675\",\"product_code\":\"22\",\"product_name\":\"Sour soup with fish\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1117\",\"suspend_id\":\"75\",\"product_id\":\"681\",\"product_code\":\"25\",\"product_name\":\"Boiled chicken in fish sauce\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1118\",\"suspend_id\":\"75\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1119\",\"suspend_id\":\"75\",\"product_id\":\"736\",\"product_code\":\"63\",\"product_name\":\"Milk tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-25 18:24:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (699, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"77\",\"date\":\"2023-10-25 18:10:05\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"11825.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1124\",\"suspend_id\":\"77\",\"product_id\":\"738\",\"product_code\":\"65\",\"product_name\":\"Chang beer (bottle)\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1125\",\"suspend_id\":\"77\",\"product_id\":\"741\",\"product_code\":\"67\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1126\",\"suspend_id\":\"77\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-25 18:52:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (700, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"79\",\"date\":\"2023-10-25 22:23:19\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"26767.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"VIP2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1132\",\"suspend_id\":\"79\",\"product_id\":\"692\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1133\",\"suspend_id\":\"79\",\"product_id\":\"719\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1134\",\"suspend_id\":\"79\",\"product_id\":\"631\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1135\",\"suspend_id\":\"79\",\"product_id\":\"741\",\"product_code\":\"67\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-25 22:16:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (701, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"80\",\"date\":\"2023-10-25 23:18:53\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"15910.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"VIP1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1138\",\"suspend_id\":\"80\",\"product_id\":\"625\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1139\",\"suspend_id\":\"80\",\"product_id\":\"692\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-25 22:19:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (702, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"76\",\"date\":\"2023-10-25 21:01:17\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"9567.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Fon\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1130\",\"suspend_id\":\"76\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1131\",\"suspend_id\":\"76\",\"product_id\":\"624\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-25 22:21:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (703, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"81\",\"date\":\"2023-10-26 15:11:41\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"21177.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1144\",\"suspend_id\":\"81\",\"product_id\":\"697\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1145\",\"suspend_id\":\"81\",\"product_id\":\"631\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1146\",\"suspend_id\":\"81\",\"product_id\":\"824\",\"product_code\":\"150\",\"product_name\":\"Ichitan yellow\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1147\",\"suspend_id\":\"81\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-26 14:21:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (704, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"82\",\"date\":\"2023-10-26 16:46:14\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"60415.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1188\",\"suspend_id\":\"82\",\"product_id\":\"718\",\"product_code\":\"46\",\"product_name\":\"Fried fish with three flavors sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1189\",\"suspend_id\":\"82\",\"product_id\":\"684\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1190\",\"suspend_id\":\"82\",\"product_id\":\"741\",\"product_code\":\"67\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1191\",\"suspend_id\":\"82\",\"product_id\":\"734\",\"product_code\":\"61\",\"product_name\":\"Thai iced black coffee\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1192\",\"suspend_id\":\"82\",\"product_id\":\"735\",\"product_code\":\"62\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1193\",\"suspend_id\":\"82\",\"product_id\":\"633\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1194\",\"suspend_id\":\"82\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1195\",\"suspend_id\":\"82\",\"product_id\":\"629\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1196\",\"suspend_id\":\"82\",\"product_id\":\"730\",\"product_code\":\"57\",\"product_name\":\"Chrysanthemum juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-26 16:06:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (705, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"85\",\"date\":\"2023-10-26 17:15:53\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"29992.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1203\",\"suspend_id\":\"85\",\"product_id\":\"631\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1204\",\"suspend_id\":\"85\",\"product_id\":\"719\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1205\",\"suspend_id\":\"85\",\"product_id\":\"677\",\"product_code\":\"24\",\"product_name\":\"Tom Yum (shrimp\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1206\",\"suspend_id\":\"85\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-26 16:30:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (706, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"83\",\"date\":\"2023-10-26 16:31:33\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"3762.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"vip1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1167\",\"suspend_id\":\"83\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1168\",\"suspend_id\":\"83\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-26 17:15:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (707, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"84\",\"date\":\"2023-10-26 17:41:21\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"15\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"70842.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1214\",\"suspend_id\":\"84\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"1618.1800\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1215\",\"suspend_id\":\"84\",\"product_id\":\"624\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1216\",\"suspend_id\":\"84\",\"product_id\":\"651\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"29700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1217\",\"suspend_id\":\"84\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1218\",\"suspend_id\":\"84\",\"product_id\":\"736\",\"product_code\":\"63\",\"product_name\":\"Milk tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1219\",\"suspend_id\":\"84\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1220\",\"suspend_id\":\"84\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-26 17:27:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (708, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"86\",\"date\":\"2023-10-26 19:18:49\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"55900.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1232\",\"suspend_id\":\"86\",\"product_id\":\"651\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1233\",\"suspend_id\":\"86\",\"product_id\":\"634\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1234\",\"suspend_id\":\"86\",\"product_id\":\"677\",\"product_code\":\"24\",\"product_name\":\"Tom Yum (shrimp\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1235\",\"suspend_id\":\"86\",\"product_id\":\"741\",\"product_code\":\"67\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1236\",\"suspend_id\":\"86\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1237\",\"suspend_id\":\"86\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1238\",\"suspend_id\":\"86\",\"product_id\":\"673\",\"product_code\":\"21b\",\"product_name\":\"Massaman Curry (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1239\",\"suspend_id\":\"86\",\"product_id\":\"631\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-26 18:52:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (709, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"87\",\"date\":\"2023-10-26 21:09:54\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"41495.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1253\",\"suspend_id\":\"87\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1254\",\"suspend_id\":\"87\",\"product_id\":\"631\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1255\",\"suspend_id\":\"87\",\"product_id\":\"678\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1256\",\"suspend_id\":\"87\",\"product_id\":\"716\",\"product_code\":\"44\",\"product_name\":\"Deep fried chicken rolls (8 pcs)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1257\",\"suspend_id\":\"87\",\"product_id\":\"704\",\"product_code\":\"37b\",\"product_name\":\"Spicy minced (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1258\",\"suspend_id\":\"87\",\"product_id\":\"737\",\"product_code\":\"64\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-26 20:32:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (710, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"88\",\"date\":\"2023-10-26 21:10:45\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"6450.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"vip1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1259\",\"suspend_id\":\"88\",\"product_id\":\"783\",\"product_code\":\"109\",\"product_name\":\"Budwiser\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-26 20:37:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (711, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"89\",\"date\":\"2023-10-27 12:04:33\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"6450.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1260\",\"suspend_id\":\"89\",\"product_id\":\"816\",\"product_code\":\"142\",\"product_name\":\"CHAPMAN\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 11:18:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (712, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"91\",\"date\":\"2023-10-27 17:16:12\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"21285.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1287\",\"suspend_id\":\"91\",\"product_id\":\"633\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1288\",\"suspend_id\":\"91\",\"product_id\":\"630\",\"product_code\":\"5\",\"product_name\":\"Tom yum fried rice\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1289\",\"suspend_id\":\"91\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 16:34:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (713, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"90\",\"date\":\"2023-10-27 17:57:02\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"11\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"58157.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1305\",\"suspend_id\":\"90\",\"product_id\":\"738\",\"product_code\":\"65\",\"product_name\":\"Chang beer (bottle)\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1306\",\"suspend_id\":\"90\",\"product_id\":\"816\",\"product_code\":\"142\",\"product_name\":\"CHAPMAN\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1307\",\"suspend_id\":\"90\",\"product_id\":\"651\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1308\",\"suspend_id\":\"90\",\"product_id\":\"656\",\"product_code\":\"15b\",\"product_name\":\"Noodles (beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1309\",\"suspend_id\":\"90\",\"product_id\":\"655\",\"product_code\":\"15a\",\"product_name\":\"Noodles (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1310\",\"suspend_id\":\"90\",\"product_id\":\"720\",\"product_code\":\"48\",\"product_name\":\"Beef hot pan\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1311\",\"suspend_id\":\"90\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1312\",\"suspend_id\":\"90\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 16:57:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (714, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"92\",\"date\":\"2023-10-27 18:37:09\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"18275.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1316\",\"suspend_id\":\"92\",\"product_id\":\"845\",\"product_code\":\"PR216\",\"product_name\":\"GUINNESS BIG\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1317\",\"suspend_id\":\"92\",\"product_id\":\"719\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1318\",\"suspend_id\":\"92\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 17:37:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (715, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"93\",\"date\":\"2023-10-27 19:42:27\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"50310.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Vip1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1336\",\"suspend_id\":\"93\",\"product_id\":\"719\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1337\",\"suspend_id\":\"93\",\"product_id\":\"707\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1338\",\"suspend_id\":\"93\",\"product_id\":\"683\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1339\",\"suspend_id\":\"93\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1340\",\"suspend_id\":\"93\",\"product_id\":\"631\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1341\",\"suspend_id\":\"93\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1342\",\"suspend_id\":\"93\",\"product_id\":\"853\",\"product_code\":\"PR221\",\"product_name\":\"REGENCY SHOT\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1343\",\"suspend_id\":\"93\",\"product_id\":\"845\",\"product_code\":\"PR216\",\"product_name\":\"GUINNESS BIG\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 18:42:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (716, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"94\",\"date\":\"2023-10-27 19:48:16\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"34937.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1344\",\"suspend_id\":\"94\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1345\",\"suspend_id\":\"94\",\"product_id\":\"697\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1346\",\"suspend_id\":\"94\",\"product_id\":\"789\",\"product_code\":\"115\",\"product_name\":\"Sprite\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1347\",\"suspend_id\":\"94\",\"product_id\":\"816\",\"product_code\":\"142\",\"product_name\":\"CHAPMAN\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1348\",\"suspend_id\":\"94\",\"product_id\":\"634\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 19:10:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (717, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"95\",\"date\":\"2023-10-27 20:44:33\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"3762.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1349\",\"suspend_id\":\"95\",\"product_id\":\"735\",\"product_code\":\"62\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 19:56:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (718, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"98\",\"date\":\"2023-10-27 21:42:44\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"6987.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T7\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1381\",\"suspend_id\":\"98\",\"product_id\":\"816\",\"product_code\":\"142\",\"product_name\":\"CHAPMAN\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1382\",\"suspend_id\":\"98\",\"product_id\":\"845\",\"product_code\":\"PR216\",\"product_name\":\"GUINNESS BIG\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 20:56:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (719, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"96\",\"date\":\"2023-10-27 21:58:48\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"12\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"69230.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"VIP2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1393\",\"suspend_id\":\"96\",\"product_id\":\"698\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1394\",\"suspend_id\":\"96\",\"product_id\":\"854\",\"product_code\":\"PR223\",\"product_name\":\" SPAGHETTI  WHIT  SPRICY  MIXED\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1395\",\"suspend_id\":\"96\",\"product_id\":\"625\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"9400.0000\",\"unit_price\":\"9400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9400.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9400.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1396\",\"suspend_id\":\"96\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1397\",\"suspend_id\":\"96\",\"product_id\":\"812\",\"product_code\":\"138\",\"product_name\":\"MOJITO\",\"net_unit_price\":\"6000.0000\",\"unit_price\":\"6000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1398\",\"suspend_id\":\"96\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1399\",\"suspend_id\":\"96\",\"product_id\":\"854\",\"product_code\":\"PR223\",\"product_name\":\" SPAGHETTI  WHIT  SPRICY  MIXED\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"29700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 21:02:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (720, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"100\",\"date\":\"2023-10-27 22:37:09\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"46870.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1412\",\"suspend_id\":\"100\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"1618.1800\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1413\",\"suspend_id\":\"100\",\"product_id\":\"658\",\"product_code\":\"16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1414\",\"suspend_id\":\"100\",\"product_id\":\"855\",\"product_code\":\"PR207\",\"product_name\":\"LADY  CHAPMAN\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1415\",\"suspend_id\":\"100\",\"product_id\":\"816\",\"product_code\":\"142\",\"product_name\":\"CHAPMAN\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 22:08:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (721, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"97\",\"date\":\"2023-10-27 22:41:51\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"11\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"39022.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1416\",\"suspend_id\":\"97\",\"product_id\":\"741\",\"product_code\":\"67\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1417\",\"suspend_id\":\"97\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1418\",\"suspend_id\":\"97\",\"product_id\":\"624\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1419\",\"suspend_id\":\"97\",\"product_id\":\"734\",\"product_code\":\"61\",\"product_name\":\"Thai iced black coffee\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1420\",\"suspend_id\":\"97\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1421\",\"suspend_id\":\"97\",\"product_id\":\"651\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 22:09:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (722, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"101\",\"date\":\"2023-10-27 23:18:00\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"9675.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T7\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1423\",\"suspend_id\":\"101\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1424\",\"suspend_id\":\"101\",\"product_id\":\"754\",\"product_code\":\"80\",\"product_name\":\"Heineken\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 22:24:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (723, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"99\",\"date\":\"2023-10-27 22:15:36\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"23650.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1400\",\"suspend_id\":\"99\",\"product_id\":\"722\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1401\",\"suspend_id\":\"99\",\"product_id\":\"741\",\"product_code\":\"67\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1402\",\"suspend_id\":\"99\",\"product_id\":\"737\",\"product_code\":\"64\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-27 22:26:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (724, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"104\",\"date\":\"2023-10-28 13:59:34\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"20210.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"vip2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1509\",\"suspend_id\":\"104\",\"product_id\":\"629\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1510\",\"suspend_id\":\"104\",\"product_id\":\"655\",\"product_code\":\"15a\",\"product_name\":\"Noodles (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 13:37:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (725, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"103\",\"date\":\"2023-10-28 14:26:11\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"42\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"266277.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"table 4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1536\",\"suspend_id\":\"103\",\"product_id\":\"729\",\"product_code\":\"56\",\"product_name\":\"Longan juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1537\",\"suspend_id\":\"103\",\"product_id\":\"629\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1538\",\"suspend_id\":\"103\",\"product_id\":\"626\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1539\",\"suspend_id\":\"103\",\"product_id\":\"677\",\"product_code\":\"24\",\"product_name\":\"Tom Yum (shrimp\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1540\",\"suspend_id\":\"103\",\"product_id\":\"719\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1541\",\"suspend_id\":\"103\",\"product_id\":\"624\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"23700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1542\",\"suspend_id\":\"103\",\"product_id\":\"650\",\"product_code\":\"12\",\"product_name\":\"Baked shrimp with glass noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1543\",\"suspend_id\":\"103\",\"product_id\":\"630\",\"product_code\":\"5\",\"product_name\":\"Tom yum fried rice\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1544\",\"suspend_id\":\"103\",\"product_id\":\"735\",\"product_code\":\"62\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1545\",\"suspend_id\":\"103\",\"product_id\":\"631\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1546\",\"suspend_id\":\"103\",\"product_id\":\"692\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1547\",\"suspend_id\":\"103\",\"product_id\":\"651\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1548\",\"suspend_id\":\"103\",\"product_id\":\"623\",\"product_code\":\"2\",\"product_name\":\"Lamb Biryani\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1549\",\"suspend_id\":\"103\",\"product_id\":\"719\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1550\",\"suspend_id\":\"103\",\"product_id\":\"735\",\"product_code\":\"62\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1551\",\"suspend_id\":\"103\",\"product_id\":\"737\",\"product_code\":\"64\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1552\",\"suspend_id\":\"103\",\"product_id\":\"684\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1553\",\"suspend_id\":\"103\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"6.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1554\",\"suspend_id\":\"103\",\"product_id\":\"734\",\"product_code\":\"61\",\"product_name\":\"Thai iced black coffee\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1555\",\"suspend_id\":\"103\",\"product_id\":\"732\",\"product_code\":\"59\",\"product_name\":\"Bael fruit juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1556\",\"suspend_id\":\"103\",\"product_id\":\"722\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 13:45:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (726, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"105\",\"date\":\"2023-10-28 15:39:12\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"12\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"49020.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1572\",\"suspend_id\":\"105\",\"product_id\":\"728\",\"product_code\":\"55\",\"product_name\":\"Cendol in coconut milk\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1573\",\"suspend_id\":\"105\",\"product_id\":\"624\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1574\",\"suspend_id\":\"105\",\"product_id\":\"659\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1575\",\"suspend_id\":\"105\",\"product_id\":\"730\",\"product_code\":\"57\",\"product_name\":\"Chrysanthemum juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1576\",\"suspend_id\":\"105\",\"product_id\":\"631\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1577\",\"suspend_id\":\"105\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"5.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1578\",\"suspend_id\":\"105\",\"product_id\":\"658\",\"product_code\":\"16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 14:43:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (727, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"102\",\"date\":\"2023-10-28 16:12:49\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"16\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"45687.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"TABLE 1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1588\",\"suspend_id\":\"102\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"36000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1589\",\"suspend_id\":\"102\",\"product_id\":\"787\",\"product_code\":\"113\",\"product_name\":\"Coke\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1590\",\"suspend_id\":\"102\",\"product_id\":\"844\",\"product_code\":\"170\",\"product_name\":\"Ichitan orange\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 15:30:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (728, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"106\",\"date\":\"2023-10-28 19:22:56\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"15\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"84817.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1608\",\"suspend_id\":\"106\",\"product_id\":\"711\",\"product_code\":\"39\",\"product_name\":\"Hat Yai-style fried chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1609\",\"suspend_id\":\"106\",\"product_id\":\"633\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1610\",\"suspend_id\":\"106\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1611\",\"suspend_id\":\"106\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1612\",\"suspend_id\":\"106\",\"product_id\":\"632\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1613\",\"suspend_id\":\"106\",\"product_id\":\"707\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1614\",\"suspend_id\":\"106\",\"product_id\":\"718\",\"product_code\":\"46\",\"product_name\":\"Fried fish with three flavors sauce\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1615\",\"suspend_id\":\"106\",\"product_id\":\"824\",\"product_code\":\"150\",\"product_name\":\"Ichitan yellow\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 18:23:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (729, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"107\",\"date\":\"2023-10-28 19:56:40\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"10105.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"vip1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1617\",\"suspend_id\":\"107\",\"product_id\":\"708\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1618\",\"suspend_id\":\"107\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 18:59:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (730, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"109\",\"date\":\"2023-10-28 21:04:29\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"52675.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1632\",\"suspend_id\":\"109\",\"product_id\":\"646\",\"product_code\":\"11a\",\"product_name\":\"Noodles in gravy sauce (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1633\",\"suspend_id\":\"109\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1634\",\"suspend_id\":\"109\",\"product_id\":\"668\",\"product_code\":\"19b\",\"product_name\":\"Panang curry (beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1635\",\"suspend_id\":\"109\",\"product_id\":\"635\",\"product_code\":\"8c\",\"product_name\":\"Pad Thai (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1636\",\"suspend_id\":\"109\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"5.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1637\",\"suspend_id\":\"109\",\"product_id\":\"658\",\"product_code\":\"16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 20:21:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (731, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"113\",\"date\":\"2023-10-28 21:20:58\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"12900.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1644\",\"suspend_id\":\"113\",\"product_id\":\"737\",\"product_code\":\"64\",\"product_name\":\"Green tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1645\",\"suspend_id\":\"113\",\"product_id\":\"729\",\"product_code\":\"56\",\"product_name\":\"Longan juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1646\",\"suspend_id\":\"113\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 20:21:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (732, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"112\",\"date\":\"2023-10-28 21:14:58\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"3225.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1643\",\"suspend_id\":\"112\",\"product_id\":\"816\",\"product_code\":\"142\",\"product_name\":\"CHAPMAN\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 20:26:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (733, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"108\",\"date\":\"2023-10-28 20:19:45\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"46225.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"T121\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1619\",\"suspend_id\":\"108\",\"product_id\":\"703\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1620\",\"suspend_id\":\"108\",\"product_id\":\"719\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1621\",\"suspend_id\":\"108\",\"product_id\":\"692\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1622\",\"suspend_id\":\"108\",\"product_id\":\"697\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1623\",\"suspend_id\":\"108\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1624\",\"suspend_id\":\"108\",\"product_id\":\"731\",\"product_code\":\"58\",\"product_name\":\"Roselle juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 20:28:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (734, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"114\",\"date\":\"2023-10-28 21:53:06\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"15480.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1655\",\"suspend_id\":\"114\",\"product_id\":\"629\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"net_unit_price\":\"10900.0000\",\"unit_price\":\"10900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1656\",\"suspend_id\":\"114\",\"product_id\":\"735\",\"product_code\":\"62\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 20:53:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (735, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"111\",\"date\":\"2023-10-28 21:05:17\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"2687.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"fon\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1638\",\"suspend_id\":\"111\",\"product_id\":\"790\",\"product_code\":\"116\",\"product_name\":\"Tonic Soda\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1639\",\"suspend_id\":\"111\",\"product_id\":\"846\",\"product_code\":\"PR217\",\"product_name\":\"COCACOLA\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1640\",\"suspend_id\":\"111\",\"product_id\":\"781\",\"product_code\":\"107\",\"product_name\":\"Red Bull\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 22:13:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (736, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"110\",\"date\":\"2023-10-28 22:55:43\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"19350.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"T7\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1661\",\"suspend_id\":\"110\",\"product_id\":\"754\",\"product_code\":\"80\",\"product_name\":\"Heineken\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"3.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1662\",\"suspend_id\":\"110\",\"product_id\":\"760\",\"product_code\":\"86\",\"product_name\":\"Desperado\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"3.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 22:15:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (737, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"115\",\"date\":\"2023-10-28 22:55:55\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"24725.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1663\",\"suspend_id\":\"115\",\"product_id\":\"848\",\"product_code\":\"PR219\",\"product_name\":\"HOT TEA\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1664\",\"suspend_id\":\"115\",\"product_id\":\"722\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-28 22:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (738, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"116\",\"date\":\"2023-10-29 14:15:27\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"57082.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1665\",\"suspend_id\":\"116\",\"product_id\":\"678\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1666\",\"suspend_id\":\"116\",\"product_id\":\"672\",\"product_code\":\"21a\",\"product_name\":\"Massaman Curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1667\",\"suspend_id\":\"116\",\"product_id\":\"659\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1668\",\"suspend_id\":\"116\",\"product_id\":\"684\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1669\",\"suspend_id\":\"116\",\"product_id\":\"631\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1670\",\"suspend_id\":\"116\",\"product_id\":\"738\",\"product_code\":\"65\",\"product_name\":\"Chang beer (bottle)\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 13:31:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (739, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"117\",\"date\":\"2023-10-29 15:29:57\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"4300.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"PREAW\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1688\",\"suspend_id\":\"117\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1689\",\"suspend_id\":\"117\",\"product_id\":\"734\",\"product_code\":\"61\",\"product_name\":\"Thai iced black coffee\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 16:29:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (740, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"118\",\"date\":\"2023-10-29 16:47:16\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"13\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"76217.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1730\",\"suspend_id\":\"118\",\"product_id\":\"624\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1731\",\"suspend_id\":\"118\",\"product_id\":\"692\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1732\",\"suspend_id\":\"118\",\"product_id\":\"735\",\"product_code\":\"62\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1733\",\"suspend_id\":\"118\",\"product_id\":\"848\",\"product_code\":\"PR219\",\"product_name\":\"HOT TEA\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1734\",\"suspend_id\":\"118\",\"product_id\":\"634\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1735\",\"suspend_id\":\"118\",\"product_id\":\"707\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1736\",\"suspend_id\":\"118\",\"product_id\":\"680\",\"product_code\":\"24d\",\"product_name\":\"Tom Yum (seafood\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1737\",\"suspend_id\":\"118\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1738\",\"suspend_id\":\"118\",\"product_id\":\"741\",\"product_code\":\"67\",\"product_name\":\"Singha beer\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1739\",\"suspend_id\":\"118\",\"product_id\":\"740\",\"product_code\":\"66\",\"product_name\":\"Leo beer\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1740\",\"suspend_id\":\"118\",\"product_id\":\"738\",\"product_code\":\"65\",\"product_name\":\"Chang beer (bottle)\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1741\",\"suspend_id\":\"118\",\"product_id\":\"715\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 16:29:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (741, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"119\",\"date\":\"2023-10-29 16:08:57\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"11287.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1728\",\"suspend_id\":\"119\",\"product_id\":\"735\",\"product_code\":\"62\",\"product_name\":\"Thai tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1729\",\"suspend_id\":\"119\",\"product_id\":\"731\",\"product_code\":\"58\",\"product_name\":\"Roselle juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 16:30:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (742, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"120\",\"date\":\"2023-10-29 17:10:41\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"21285.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T5\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1744\",\"suspend_id\":\"120\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1745\",\"suspend_id\":\"120\",\"product_id\":\"651\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1746\",\"suspend_id\":\"120\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 16:39:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (743, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"122\",\"date\":\"2023-10-29 18:40:55\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"19135.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1751\",\"suspend_id\":\"122\",\"product_id\":\"699\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1752\",\"suspend_id\":\"122\",\"product_id\":\"651\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1753\",\"suspend_id\":\"122\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 17:41:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (744, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"123\",\"date\":\"2023-10-29 19:34:17\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"38700.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T7\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1780\",\"suspend_id\":\"123\",\"product_id\":\"722\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1781\",\"suspend_id\":\"123\",\"product_id\":\"719\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1782\",\"suspend_id\":\"123\",\"product_id\":\"754\",\"product_code\":\"80\",\"product_name\":\"Heineken\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1783\",\"suspend_id\":\"123\",\"product_id\":\"791\",\"product_code\":\"117\",\"product_name\":\"Chivita Pack\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 18:48:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (745, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"126\",\"date\":\"2023-10-29 19:50:57\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"24725.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1786\",\"suspend_id\":\"126\",\"product_id\":\"719\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1787\",\"suspend_id\":\"126\",\"product_id\":\"759\",\"product_code\":\"85\",\"product_name\":\"Legend\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1788\",\"suspend_id\":\"126\",\"product_id\":\"748\",\"product_code\":\"74\",\"product_name\":\"Baron Romero\",\"net_unit_price\":\"7000.0000\",\"unit_price\":\"7000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 18:59:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (746, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"127\",\"date\":\"2023-10-29 20:06:24\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"537.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1790\",\"suspend_id\":\"127\",\"product_id\":\"826\",\"product_code\":\"152\",\"product_name\":\"Takeaway\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 19:06:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (747, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"124\",\"date\":\"2023-10-29 20:20:01\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"3762.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1801\",\"suspend_id\":\"124\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1802\",\"suspend_id\":\"124\",\"product_id\":\"816\",\"product_code\":\"142\",\"product_name\":\"CHAPMAN\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 19:20:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (748, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"129\",\"date\":\"2023-10-29 20:48:38\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"12900.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T12\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1807\",\"suspend_id\":\"129\",\"product_id\":\"754\",\"product_code\":\"80\",\"product_name\":\"Heineken\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1808\",\"suspend_id\":\"129\",\"product_id\":\"783\",\"product_code\":\"109\",\"product_name\":\"Budwiser\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 19:48:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (749, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"125\",\"date\":\"2023-10-29 21:00:19\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"71595.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"Table5 \",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1817\",\"suspend_id\":\"125\",\"product_id\":\"622\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"1618.1800\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1818\",\"suspend_id\":\"125\",\"product_id\":\"702\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1819\",\"suspend_id\":\"125\",\"product_id\":\"753\",\"product_code\":\"79\",\"product_name\":\"Andre\",\"net_unit_price\":\"12000.0000\",\"unit_price\":\"12000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"12000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1820\",\"suspend_id\":\"125\",\"product_id\":\"821\",\"product_code\":\"147\",\"product_name\":\"ORANGE  JUICE\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1821\",\"suspend_id\":\"125\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1822\",\"suspend_id\":\"125\",\"product_id\":\"711\",\"product_code\":\"39\",\"product_name\":\"Hat Yai-style fried chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1823\",\"suspend_id\":\"125\",\"product_id\":\"791\",\"product_code\":\"117\",\"product_name\":\"Chivita Pack\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 20:00:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (750, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"130\",\"date\":\"2023-10-29 21:21:20\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"10642.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"out\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1828\",\"suspend_id\":\"130\",\"product_id\":\"702\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 20:35:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (751, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"128\",\"date\":\"2023-10-29 21:41:07\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"22467.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1829\",\"suspend_id\":\"128\",\"product_id\":\"692\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1830\",\"suspend_id\":\"128\",\"product_id\":\"719\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1831\",\"suspend_id\":\"128\",\"product_id\":\"823\",\"product_code\":\"149\",\"product_name\":\"Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1832\",\"suspend_id\":\"128\",\"product_id\":\"787\",\"product_code\":\"113\",\"product_name\":\"Coke\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 20:41:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (752, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"121\",\"date\":\"2023-10-29 21:17:56\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"24617.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"Table 1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1826\",\"suspend_id\":\"121\",\"product_id\":\"719\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1827\",\"suspend_id\":\"121\",\"product_id\":\"643\",\"product_code\":\"10b\",\"product_name\":\"Stir-fried glass noodles (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-29 20:45:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (753, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"622\",\"code\":\"1\",\"name\":\"Chicken Biryani\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-18.0000\",\"tax_rate\":\"3\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chicken-biryani\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (754, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"774\",\"code\":\"100\",\"name\":\"Jameson Black\",\"unit\":\"1\",\"cost\":\"32400.0000\",\"price\":\"32400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jameson-black\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (755, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"775\",\"code\":\"101\",\"name\":\"Jameson 1780\",\"unit\":\"1\",\"cost\":\"99000.0000\",\"price\":\"99000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jameson-1780\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (756, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"776\",\"code\":\"102\",\"name\":\"Chamdor\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chamdor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (757, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"777\",\"code\":\"103\",\"name\":\"Bacardi\",\"unit\":\"1\",\"cost\":\"12600.0000\",\"price\":\"12600.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bacardi\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (758, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"778\",\"code\":\"104\",\"name\":\"William Lawson\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"william-lawson\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (759, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"779\",\"code\":\"105\",\"name\":\"Four Cousins\",\"unit\":\"1\",\"cost\":\"6300.0000\",\"price\":\"6300.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"four-cousins\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (760, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"780\",\"code\":\"106\",\"name\":\"Bullet Can\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bullet-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (761, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"781\",\"code\":\"107\",\"name\":\"Red Bull\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-bull\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (762, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"782\",\"code\":\"108\",\"name\":\"Medium Stout\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medium-stout\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (763, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"783\",\"code\":\"109\",\"name\":\"Budwiser\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-5.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"budwiser\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (764, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"642\",\"code\":\"10a\",\"name\":\"Stir-fried glass noodles (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-glass-noodles-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (765, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"643\",\"code\":\"10b\",\"name\":\"Stir-fried glass noodles (seafood)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-glass-noodles-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (766, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"644\",\"code\":\"10c\",\"name\":\"Stir-fried glass noodles (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-glass-noodles-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (767, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"645\",\"code\":\"10d\",\"name\":\"Stir-fried glass noodles (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-glass-noodles-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (768, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"784\",\"code\":\"110\",\"name\":\"Trophy\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"trophy\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (769, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"785\",\"code\":\"111\",\"name\":\"Trophy Stout\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"trophy-stout\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (770, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"786\",\"code\":\"112\",\"name\":\"Maltina\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-11.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maltina\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (771, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"787\",\"code\":\"113\",\"name\":\"Coke\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"coke\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (772, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"788\",\"code\":\"114\",\"name\":\"Fanta\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fanta\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (773, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"789\",\"code\":\"115\",\"name\":\"Sprite\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sprite\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (774, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"790\",\"code\":\"116\",\"name\":\"Tonic Soda\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tonic-soda\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (775, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"791\",\"code\":\"117\",\"name\":\"Chivita Pack\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chivita-pack\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (776, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"792\",\"code\":\"118\",\"name\":\"Chivita Glass\",\"unit\":\"1\",\"cost\":\"1000.0000\",\"price\":\"1000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chivita-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (777, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"793\",\"code\":\"119\",\"name\":\"Chi-exotic Pack\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chi-exotic-pack\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (778, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"646\",\"code\":\"11a\",\"name\":\"Noodles in gravy sauce (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-4.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-gravy-sauce-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (779, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"647\",\"code\":\"11b\",\"name\":\"Noodles in gravy sauce (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-gravy-sauce-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (780, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"648\",\"code\":\"11c\",\"name\":\"Noodles in gravy sauce (seafood)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-gravy-sauce-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (781, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"649\",\"code\":\"11d\",\"name\":\"Noodles in gravy sauce (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-gravy-sauce-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (782, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"650\",\"code\":\"12\",\"name\":\"Baked shrimp with glass noodles\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baked-shrimp-with-glass-noodles\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (783, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"794\",\"code\":\"120\",\"name\":\"Chi-exotic Glass\",\"unit\":\"1\",\"cost\":\"1000.0000\",\"price\":\"1000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chi-exotic-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (784, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"795\",\"code\":\"121\",\"name\":\"Fresh Juice Glass\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fresh-juice-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (785, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"796\",\"code\":\"122\",\"name\":\"Lemon Juice Glass\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lemon-juice-glass\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (786, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"797\",\"code\":\"123\",\"name\":\"Fried rice mixed\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (787, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"798\",\"code\":\"124\",\"name\":\"Fried egg\",\"unit\":\"1\",\"cost\":\"700.0000\",\"price\":\"700.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-egg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (788, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"799\",\"code\":\"125\",\"name\":\"Tequila shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tequila-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (789, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"800\",\"code\":\"126\",\"name\":\"Gordons shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (790, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"801\",\"code\":\"127\",\"name\":\"Campari shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"campari-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (791, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"802\",\"code\":\"128\",\"name\":\"Cointreau shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cointreau-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (792, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"803\",\"code\":\"129\",\"name\":\"Black label shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"black-label-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (793, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"651\",\"code\":\"13\",\"name\":\"Chicken northern style curry noodles\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-10.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chicken-northern-style-curry-noodles\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (794, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"804\",\"code\":\"130\",\"name\":\"Red label shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-label-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (795, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"805\",\"code\":\"131\",\"name\":\"Bacardi shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bacardi-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (796, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"806\",\"code\":\"132\",\"name\":\"Absolute vodka shot\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"absolute-vodka-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (797, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"807\",\"code\":\"133\",\"name\":\"X1 Vodka shot\",\"unit\":\"1\",\"cost\":\"2500.0000\",\"price\":\"2500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"x1-vodka-shot\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (798, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"808\",\"code\":\"134\",\"name\":\"Hero\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hero\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (799, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"809\",\"code\":\"135\",\"name\":\"Andre rose\",\"unit\":\"1\",\"cost\":\"15000.0000\",\"price\":\"15000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"andre-rose\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (800, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"810\",\"code\":\"136\",\"name\":\"Spicy beef soup\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-beef-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (801, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"811\",\"code\":\"137\",\"name\":\"Nederburg\",\"unit\":\"1\",\"cost\":\"16200.0000\",\"price\":\"16200.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nederburg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (802, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"812\",\"code\":\"138\",\"name\":\"MOJITO\",\"unit\":\"1\",\"cost\":\"6000.0000\",\"price\":\"6000.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mojito\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (803, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"813\",\"code\":\"139\",\"name\":\"LONG  ISLAND\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"long-island\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (804, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"652\",\"code\":\"14\",\"name\":\"Rice noodles with fish curry\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rice-noodles-with-fish-curry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (805, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"814\",\"code\":\"140\",\"name\":\"TIEGLILU\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tieglilu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (806, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"815\",\"code\":\"141\",\"name\":\"CHIMAN\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chiman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (807, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"816\",\"code\":\"142\",\"name\":\"CHAPMAN\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-11.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chapman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (808, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"817\",\"code\":\"143\",\"name\":\"Gordons BIG\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (809, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"818\",\"code\":\"144\",\"name\":\"Gordons SMALL\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (810, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"819\",\"code\":\"145\",\"name\":\"PINEAPPLE  JUICE\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pineapple-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (811, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"820\",\"code\":\"146\",\"name\":\"WATERMELON  JUICE\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"watermelon-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (812, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"821\",\"code\":\"147\",\"name\":\"ORANGE  JUICE\",\"unit\":\"1\",\"cost\":\"4000.0000\",\"price\":\"4000.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"orange-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (813, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"822\",\"code\":\"148\",\"name\":\"STRAWBERRY JUICE\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"strawberry-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (814, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"823\",\"code\":\"149\",\"name\":\"Water\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-72.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"water\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (815, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"653\",\"code\":\"14b\",\"name\":\"Rice noodles with coconut milk curry\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rice-noodles-with-coconut-milk-curry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (816, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"654\",\"code\":\"14c\",\"name\":\"Rice noodles with northern curry\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rice-noodles-with-northern-curry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (817, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"824\",\"code\":\"150\",\"name\":\"Ichitan yellow\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ichitan-yellow\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (818, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"825\",\"code\":\"151\",\"name\":\"Ichitan green\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ichitan-green\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (819, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"826\",\"code\":\"152\",\"name\":\"Takeaway\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"10\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-56.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"takeaway\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (820, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"827\",\"code\":\"153\",\"name\":\"Gordons gin\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-gin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (821, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"828\",\"code\":\"154\",\"name\":\"Two oceans\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"two-oceans\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (822, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"829\",\"code\":\"155\",\"name\":\"Sky vodka\",\"unit\":\"1\",\"cost\":\"15200.0000\",\"price\":\"15200.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sky-vodka\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (823, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"830\",\"code\":\"156\",\"name\":\"Martell VS\",\"unit\":\"1\",\"cost\":\"65000.0000\",\"price\":\"65000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"martell-vs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (824, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"831\",\"code\":\"157\",\"name\":\"Campari\",\"unit\":\"1\",\"cost\":\"20000.0000\",\"price\":\"20000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"campari\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (825, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"832\",\"code\":\"158\",\"name\":\"Baileys\",\"unit\":\"1\",\"cost\":\"15500.0000\",\"price\":\"15500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baileys\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (826, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"833\",\"code\":\"159\",\"name\":\"4th Street Red\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4th-street-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (827, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"655\",\"code\":\"15a\",\"name\":\"Noodles (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-4.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (828, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"656\",\"code\":\"15b\",\"name\":\"Noodles (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (829, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"657\",\"code\":\"15c\",\"name\":\"Noodles (Tom Yum)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-tom-yum\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (830, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"658\",\"code\":\"16\",\"name\":\"Noodles in red tofu clear soup\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-8.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"noodles-in-red-tofu-clear-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (831, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"834\",\"code\":\"160\",\"name\":\"4th Street White\",\"unit\":\"1\",\"cost\":\"8000.0000\",\"price\":\"8000.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"4th-street-white\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (832, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"835\",\"code\":\"161\",\"name\":\"Mastinellis\",\"unit\":\"1\",\"cost\":\"9000.0000\",\"price\":\"9000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mastinellis\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (833, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"836\",\"code\":\"162\",\"name\":\"Omega Tequila\",\"unit\":\"1\",\"cost\":\"25000.0000\",\"price\":\"25000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omega-tequila\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (834, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"837\",\"code\":\"163\",\"name\":\"Martell Blue Swift\",\"unit\":\"1\",\"cost\":\"100000.0000\",\"price\":\"100000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"martell-blue-swift\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (835, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"838\",\"code\":\"164\",\"name\":\"Sierra Tequila\",\"unit\":\"1\",\"cost\":\"30000.0000\",\"price\":\"30000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sierra-tequila\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (836, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"839\",\"code\":\"165\",\"name\":\"Bombay Sapphire\",\"unit\":\"1\",\"cost\":\"12500.0000\",\"price\":\"12500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bombay-sapphire\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (837, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"840\",\"code\":\"166\",\"name\":\"Smirnoff X1\",\"unit\":\"1\",\"cost\":\"6500.0000\",\"price\":\"6500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"smirnoff-x1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (838, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"841\",\"code\":\"167\",\"name\":\"Teeling Whisky\",\"unit\":\"1\",\"cost\":\"25000.0000\",\"price\":\"25000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"teeling-whisky\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (839, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"842\",\"code\":\"168\",\"name\":\"Pascas\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pascas\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (840, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"843\",\"code\":\"169\",\"name\":\"Flirt Vodka\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flirt-vodka\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (841, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"844\",\"code\":\"170\",\"name\":\"Ichitan orange\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ichitan-orange\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (842, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"659\",\"code\":\"17a\",\"name\":\"Green curry (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-curry-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (843, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"660\",\"code\":\"17b\",\"name\":\"Green curry (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-curry-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (844, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"661\",\"code\":\"17c\",\"name\":\"Green curry (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-curry-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (845, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"662\",\"code\":\"17d\",\"name\":\"Green curry (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-curry-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (846, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"663\",\"code\":\"18a\",\"name\":\"Red curry (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-curry-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (847, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"664\",\"code\":\"18b\",\"name\":\"Red curry (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-curry-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (848, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"665\",\"code\":\"18c\",\"name\":\"Red curry (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-curry-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (849, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"666\",\"code\":\"18d\",\"name\":\"Red curry (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-curry-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (850, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"667\",\"code\":\"19a\",\"name\":\"Panang curry (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panang-curry-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (851, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"668\",\"code\":\"19b\",\"name\":\"Panang curry (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panang-curry-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (852, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"669\",\"code\":\"19c\",\"name\":\"Panang curry (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panang-curry-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (853, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"670\",\"code\":\"19d\",\"name\":\"Panang curry (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"panang-curry-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (854, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"623\",\"code\":\"2\",\"name\":\"Lamb Biryani\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lamb-biryani\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (855, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"671\",\"code\":\"20\",\"name\":\"Chicken leg curry\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chicken-leg-curry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (856, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"672\",\"code\":\"21a\",\"name\":\"Massaman Curry (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"massaman-curry-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (857, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"673\",\"code\":\"21b\",\"name\":\"Massaman Curry (beef)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"massaman-curry-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (858, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"674\",\"code\":\"21c\",\"name\":\"Massaman Curry (lamb)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"massaman-curry-lamb\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (859, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"675\",\"code\":\"22\",\"name\":\"Sour soup with fish\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sour-soup-with-fish\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (860, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"676\",\"code\":\"23\",\"name\":\"Chicken, tofu and seaweed in clear soup\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chicken-tofu-and-seaweed-in-clear-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (861, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"677\",\"code\":\"24\",\"name\":\"Tom Yum (shrimp\\/clear soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-7.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-shrimpclear-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (862, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"678\",\"code\":\"24b\",\"name\":\"Tom Yum (shrimp\\/creamy soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-shrimpcreamy-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (863, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"679\",\"code\":\"24c\",\"name\":\"Tom Yum (seafood\\/clear soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-seafoodclear-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (864, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"680\",\"code\":\"24d\",\"name\":\"Tom Yum (seafood\\/creamy soup)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-seafoodcreamy-soup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (865, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"681\",\"code\":\"25\",\"name\":\"Boiled chicken in fish sauce\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"boiled-chicken-in-fish-sauce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (866, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"682\",\"code\":\"26\",\"name\":\"Stewed eggs\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stewed-eggs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (867, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"683\",\"code\":\"27a\",\"name\":\"Stir-fried with holy basil (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-8.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-holy-basil-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (868, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"684\",\"code\":\"27b\",\"name\":\"Stir-fried with holy basil (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-7.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-holy-basil-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (869, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"685\",\"code\":\"27c\",\"name\":\"Stir-fried with holy basil (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-holy-basil-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (870, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"686\",\"code\":\"27d\",\"name\":\"Stir-fried with holy basil (mixed meat)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-holy-basil-mixed-meat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (871, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"687\",\"code\":\"28a\",\"name\":\"Stir-fried with bell peppers (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-bell-peppers-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (872, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"688\",\"code\":\"28b\",\"name\":\"Stir-fried with bell peppers (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-bell-peppers-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (873, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"689\",\"code\":\"28c\",\"name\":\"Stir-fried with bell peppers (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-bell-peppers-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (874, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"690\",\"code\":\"28d\",\"name\":\"Stir-fried with bell peppers (mixed meat)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-with-bell-peppers-mixed-meat\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (875, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"691\",\"code\":\"29\",\"name\":\"Stir-fried chicken with ginger\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-chicken-with-ginger\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (876, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"624\",\"code\":\"3\",\"name\":\"Steamed rice topped with chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-19.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"steamed-rice-topped-with-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (877, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"692\",\"code\":\"30\",\"name\":\"Stir-fried mixed vegetables\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-8.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-mixed-vegetables\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (878, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"693\",\"code\":\"30b\",\"name\":\"Stir-fried shrimp mixed vegetables\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-shrimp-mixed-vegetables\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (879, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"694\",\"code\":\"30c\",\"name\":\"Stir-fried beef mixed vegetables\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-beef-mixed-vegetables\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (880, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"695\",\"code\":\"31\",\"name\":\"Sweet and sour stir fry\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sweet-and-sour-stir-fry\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (881, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"696\",\"code\":\"32\",\"name\":\"Fried boiled egg with tamarind sauce\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-boiled-egg-with-tamarind-sauce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (882, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"697\",\"code\":\"33\",\"name\":\"Stir-fried crab with curry powder\",\"unit\":\"1\",\"cost\":\"10200.0000\",\"price\":\"10200.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-5.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-crab-with-curry-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (883, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"698\",\"code\":\"34\",\"name\":\"Spicy glass noodles salad\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-glass-noodles-salad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (884, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"699\",\"code\":\"35\",\"name\":\"Spicy papaya salad (Thai style)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-papaya-salad-thai-style\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (885, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"700\",\"code\":\"35b\",\"name\":\"Spicy papaya salad (fermented fish)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-papaya-salad-fermented-fish\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (886, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"701\",\"code\":\"35c\",\"name\":\"Spicy papaya salad (mixed ingrediets)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-papaya-salad-mixed-ingrediets\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (887, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"702\",\"code\":\"36\",\"name\":\"Spicy mixed seafood salad\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-mixed-seafood-salad\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (888, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"703\",\"code\":\"37a\",\"name\":\"Spicy minced (beef)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-minced-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (889, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"704\",\"code\":\"37b\",\"name\":\"Spicy minced (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-minced-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (890, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"705\",\"code\":\"37c\",\"name\":\"Spicy chopped meat salad (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-chopped-meat-salad-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (891, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"706\",\"code\":\"37d\",\"name\":\"Spicy chopped meat salad (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spicy-chopped-meat-salad-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (892, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"707\",\"code\":\"38a\",\"name\":\"Fried spring rolls (stuffed with chicken)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-7.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-spring-rolls-stuffed-with-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (893, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"708\",\"code\":\"38b\",\"name\":\"Fried spring rolls (stuffed with shrimp)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-spring-rolls-stuffed-with-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (894, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"709\",\"code\":\"38c\",\"name\":\"Fried spring rolls (stuffed with vegetables)\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-spring-rolls-stuffed-with-vegetables\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (895, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"710\",\"code\":\"38d\",\"name\":\"Fried spring rolls (stuffed with cheese)\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-spring-rolls-stuffed-with-cheese\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (896, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"711\",\"code\":\"39\",\"name\":\"Hat Yai-style fried chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-4.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hat-yai-style-fried-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (897, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"712\",\"code\":\"40\",\"name\":\"Fried shrimp\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (898, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"713\",\"code\":\"41\",\"name\":\"Fried squid\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-squid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (899, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"714\",\"code\":\"42\",\"name\":\"Fried chicken wings\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-chicken-wings\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (900, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"715\",\"code\":\"43\",\"name\":\"Sun-dried beef\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sun-dried-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (901, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"716\",\"code\":\"44\",\"name\":\"Deep fried chicken rolls (8 pcs)\",\"unit\":\"1\",\"cost\":\"6900.0000\",\"price\":\"6900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"deep-fried-chicken-rolls-8-pcs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (902, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"717\",\"code\":\"45\",\"name\":\"Red grilled chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-grilled-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (903, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"718\",\"code\":\"46\",\"name\":\"Fried fish with three flavors sauce\",\"unit\":\"1\",\"cost\":\"13000.0000\",\"price\":\"13000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-fish-with-three-flavors-sauce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (904, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"719\",\"code\":\"47\",\"name\":\"Fried fish with chili sauce\",\"unit\":\"1\",\"cost\":\"13000.0000\",\"price\":\"13000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-16.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-fish-with-chili-sauce\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (905, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"720\",\"code\":\"48\",\"name\":\"Beef hot pan\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"7\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"beef-hot-pan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (906, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"721\",\"code\":\"49\",\"name\":\"Seafood hot pan\",\"unit\":\"1\",\"cost\":\"10900.0000\",\"price\":\"10900.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"seafood-hot-pan\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (907, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"625\",\"code\":\"4a\",\"name\":\"Fried rice with chicken\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-7.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-with-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (908, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"626\",\"code\":\"4b\",\"name\":\"Fried rice with shrimps\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-11.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-with-shrimps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (909, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"627\",\"code\":\"4c\",\"name\":\"Fried rice with seafood\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-with-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (910, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"628\",\"code\":\"4d\",\"name\":\"Fried rice with beef\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-with-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (911, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"629\",\"code\":\"4e\",\"name\":\"Fried rice mixed\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-4.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fried-rice-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (912, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"852\",\"code\":\"4f\",\"name\":\"Fried rice with vegetable\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"6\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"fried-rice-with-vegetable\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (913, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"630\",\"code\":\"5\",\"name\":\"Tom yum fried rice\",\"unit\":\"1\",\"cost\":\"7900.0000\",\"price\":\"7900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tom-yum-fried-rice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (914, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"722\",\"code\":\"50\",\"name\":\"Mixed set (large)\",\"unit\":\"1\",\"cost\":\"15000.0000\",\"price\":\"15000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"7\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-11.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mixed-set-large\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (915, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"723\",\"code\":\"50b\",\"name\":\"Mixed set (small)\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"7\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mixed-set-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (916, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"724\",\"code\":\"51\",\"name\":\"Pandan custard bread\",\"unit\":\"1\",\"cost\":\"5500.0000\",\"price\":\"5500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pandan-custard-bread\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (917, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"725\",\"code\":\"52\",\"name\":\"Sago pearls\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sago-pearls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (918, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"726\",\"code\":\"53\",\"name\":\"Glutinous rice balls\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"8\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"glutinous-rice-balls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (919, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"727\",\"code\":\"54\",\"name\":\"Crispy red ruby\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"8\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"crispy-red-ruby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (920, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"728\",\"code\":\"55\",\"name\":\"Cendol in coconut milk\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cendol-in-coconut-milk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (921, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"729\",\"code\":\"56\",\"name\":\"Longan juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"longan-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (922, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"730\",\"code\":\"57\",\"name\":\"Chrysanthemum juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chrysanthemum-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (923, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"731\",\"code\":\"58\",\"name\":\"Roselle juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"roselle-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (924, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"732\",\"code\":\"59\",\"name\":\"Bael fruit juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bael-fruit-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (925, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"631\",\"code\":\"6\",\"name\":\"Rice\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-16.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (926, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"733\",\"code\":\"60\",\"name\":\"Pandan juice\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pandan-juice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (927, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"734\",\"code\":\"61\",\"name\":\"Thai iced black coffee\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"thai-iced-black-coffee\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (928, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"735\",\"code\":\"62\",\"name\":\"Thai tea\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-16.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"thai-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (929, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"736\",\"code\":\"63\",\"name\":\"Milk tea\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"milk-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (930, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"737\",\"code\":\"64\",\"name\":\"Green tea\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"green-tea\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (931, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"738\",\"code\":\"65\",\"name\":\"Chang beer (bottle)\",\"unit\":\"1\",\"cost\":\"4500.0000\",\"price\":\"4500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chang-beer-bottle\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (932, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"739\",\"code\":\"65b\",\"name\":\"Chang beer (can)\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chang-beer-can\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (933, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"740\",\"code\":\"66\",\"name\":\"Leo beer\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-32.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"leo-beer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (934, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"741\",\"code\":\"67\",\"name\":\"Singha beer\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-15.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"singha-beer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (935, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"742\",\"code\":\"68\",\"name\":\"Regency\",\"unit\":\"1\",\"cost\":\"85000.0000\",\"price\":\"85000.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\":null,\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"regency\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (936, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"743\",\"code\":\"69\",\"name\":\"Hennessy VS\",\"unit\":\"1\",\"cost\":\"50000.0000\",\"price\":\"50000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hennessy-vs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (937, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"632\",\"code\":\"7\",\"name\":\"Sticky rice\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-7.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sticky-rice\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (938, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"744\",\"code\":\"70\",\"name\":\"Hennessy VSOP\",\"unit\":\"1\",\"cost\":\"80000.0000\",\"price\":\"80000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hennessy-vsop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (939, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"745\",\"code\":\"71\",\"name\":\"Origin Bitters Small\",\"unit\":\"1\",\"cost\":\"2000.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"origin-bitters-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (940, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"746\",\"code\":\"72\",\"name\":\"Cointreau\",\"unit\":\"1\",\"cost\":\"25000.0000\",\"price\":\"25000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cointreau\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (941, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"747\",\"code\":\"73\",\"name\":\"LA.Merit\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lamerit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (942, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"748\",\"code\":\"74\",\"name\":\"Baron Romero\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"baron-romero\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (943, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"749\",\"code\":\"75\",\"name\":\"Jack Williams\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jack-williams\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (944, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"750\",\"code\":\"76\",\"name\":\"Red Williams\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-williams\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (945, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"751\",\"code\":\"77\",\"name\":\"Red Label\",\"unit\":\"1\",\"cost\":\"12000.0000\",\"price\":\"12000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"red-label\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (946, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"752\",\"code\":\"78\",\"name\":\"Jack Daniels\",\"unit\":\"1\",\"cost\":\"20000.0000\",\"price\":\"20000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jack-daniels\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (947, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"753\",\"code\":\"79\",\"name\":\"Andre\",\"unit\":\"1\",\"cost\":\"12000.0000\",\"price\":\"12000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"andre\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (948, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"754\",\"code\":\"80\",\"name\":\"Heineken\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-14.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"heineken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (949, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"755\",\"code\":\"81\",\"name\":\"Star\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"star\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (950, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"756\",\"code\":\"82\",\"name\":\"Gulder\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gulder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (951, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"757\",\"code\":\"83\",\"name\":\"Star Raddler\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"star-raddler\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (952, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"758\",\"code\":\"84\",\"name\":\"Tiger\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tiger\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (953, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"759\",\"code\":\"85\",\"name\":\"Legend\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"legend\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (954, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"760\",\"code\":\"86\",\"name\":\"Desperado\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"desperado\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (955, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"761\",\"code\":\"87\",\"name\":\"Big Stout\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"big-stout\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (956, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"762\",\"code\":\"88\",\"name\":\"Absolute Vodka\",\"unit\":\"1\",\"cost\":\"15000.0000\",\"price\":\"15000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"absolute-vodka\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (957, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"763\",\"code\":\"89\",\"name\":\"Black Label\",\"unit\":\"1\",\"cost\":\"27000.0000\",\"price\":\"27000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"black-label\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (958, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"633\",\"code\":\"8a\",\"name\":\"Pad Thai (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (959, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"634\",\"code\":\"8b\",\"name\":\"Pad Thai (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (960, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"635\",\"code\":\"8c\",\"name\":\"Pad Thai (seafood)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (961, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"636\",\"code\":\"8d\",\"name\":\"Pad Thai (beef)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-beef\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (962, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"637\",\"code\":\"8e\",\"name\":\"Pad Thai (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pad-thai-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (963, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"764\",\"code\":\"90\",\"name\":\"Castillo White Wine\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"castillo-white-wine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (964, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"765\",\"code\":\"91\",\"name\":\"Castillo Red Wine\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"castillo-red-wine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (965, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"766\",\"code\":\"92\",\"name\":\"Carlo Rossi\",\"unit\":\"1\",\"cost\":\"10000.0000\",\"price\":\"10000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"carlo-rossi\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (966, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"767\",\"code\":\"93\",\"name\":\"Gordons gin small\",\"unit\":\"1\",\"cost\":\"1500.0000\",\"price\":\"1500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gordons-gin-small\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (967, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"768\",\"code\":\"94\",\"name\":\"Lirid red\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lirid-red\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (968, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"769\",\"code\":\"95\",\"name\":\"Nedenburg\",\"unit\":\"1\",\"cost\":\"16200.0000\",\"price\":\"16200.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nedenburg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (969, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"770\",\"code\":\"96\",\"name\":\"Agor\",\"unit\":\"1\",\"cost\":\"7500.0000\",\"price\":\"7500.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"agor\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (970, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"771\",\"code\":\"97\",\"name\":\"Escudo Rojo\",\"unit\":\"1\",\"cost\":\"7000.0000\",\"price\":\"7000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"escudo-rojo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (971, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"772\",\"code\":\"98\",\"name\":\"Origin big\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"origin-big\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (972, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"773\",\"code\":\"99\",\"name\":\"Remy Martin\",\"unit\":\"1\",\"cost\":\"72000.0000\",\"price\":\"72000.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"remy-martin\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (973, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"638\",\"code\":\"9a\",\"name\":\"Stir-fried noodle with soy sauce (chicken)\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-noodle-with-soy-sauce-chicken\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (974, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"639\",\"code\":\"9b\",\"name\":\"Stir-fried noodle with soy sauce (shrimp)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-noodle-with-soy-sauce-shrimp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (975, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"640\",\"code\":\"9c\",\"name\":\"Stir-fried noodle with soy sauce (seafood)\",\"unit\":\"1\",\"cost\":\"9900.0000\",\"price\":\"9900.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-noodle-with-soy-sauce-seafood\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (976, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"641\",\"code\":\"9d\",\"name\":\"Stir-fried noodle with soy sauce (mixed)\",\"unit\":\"1\",\"cost\":\"10400.0000\",\"price\":\"10400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stir-fried-noodle-with-soy-sauce-mixed\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (977, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"850\",\"code\":\"PR1000\",\"name\":\"SEAFOOD SAUCE\",\"unit\":\"1\",\"cost\":\"4000.0000\",\"price\":\"4000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"7\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"seafood-sauce\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (978, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"855\",\"code\":\"PR207\",\"name\":\"LADY  CHAPMAN\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"lady-chapman\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (979, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"845\",\"code\":\"PR216\",\"name\":\"GUINNESS BIG\",\"unit\":\"1\",\"cost\":\"3500.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-10.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"guinness-big\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (980, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"846\",\"code\":\"PR217\",\"name\":\"COCACOLA\",\"unit\":\"1\",\"cost\":\"500.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"cocacola\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (981, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"847\",\"code\":\"PR218\",\"name\":\"MILKCHECK\",\"unit\":\"1\",\"cost\":\"5000.0000\",\"price\":\"5000.0000\",\"alert_quantity\":\"0.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"milkcheck\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (982, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"848\",\"code\":\"PR219\",\"name\":\"HOT TEA\",\"unit\":\"1\",\"cost\":\"4000.0000\",\"price\":\"4000.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"hot-tea\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (983, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"851\",\"code\":\"PR220\",\"name\":\"SING BEER CAN\",\"unit\":\"1\",\"cost\":\"3000.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"9\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"sing-beer-can\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (984, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"853\",\"code\":\"PR221\",\"name\":\"REGENCY SHOT\",\"unit\":\"1\",\"cost\":\"5500.0000\",\"price\":\"5500.0000\",\"alert_quantity\":\"0.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\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"regency-shot\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (985, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"854\",\"code\":\"PR223\",\"name\":\" SPAGHETTI  WHIT  SPRICY  MIXED\",\"unit\":\"1\",\"cost\":\"8900.0000\",\"price\":\"8900.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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"spaghetti-whit-spricy-mixed\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (986, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"849\",\"code\":\"PR999\",\"name\":\"FISH SAUCE CHILI\",\"unit\":\"1\",\"cost\":\"4000.0000\",\"price\":\"4000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"7\",\"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\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"fish-sauce-chili\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-10-29 21:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (987, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"23\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Walk-in Customer\",\"company\":\"Walk-in Customer\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900301\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"walkin@kunakorn.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\":\"\"}}', '2023-10-29 21:52:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (988, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"132\",\"date\":\"2023-10-30 12:41:58\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"29\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"597915.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1873\",\"suspend_id\":\"132\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"32363.6400\",\"unit_price\":\"35600.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"6472.7200\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"71200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"35600.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1874\",\"suspend_id\":\"132\",\"product_id\":\"890\",\"product_code\":\"15b\",\"product_name\":\"Noodles (beef)\",\"net_unit_price\":\"39600.0000\",\"unit_price\":\"39600.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"79200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"39600.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1875\",\"suspend_id\":\"132\",\"product_id\":\"914\",\"product_code\":\"24d\",\"product_name\":\"Tom Yum (seafood\\/creamy soup)\",\"net_unit_price\":\"35600.0000\",\"unit_price\":\"35600.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"71200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"35600.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1876\",\"suspend_id\":\"132\",\"product_id\":\"941\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"35600.0000\",\"unit_price\":\"35600.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"71200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"35600.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1877\",\"suspend_id\":\"132\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"31600.0000\",\"unit_price\":\"31600.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"63200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"31600.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1878\",\"suspend_id\":\"132\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"net_unit_price\":\"39600.0000\",\"unit_price\":\"39600.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"79200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"39600.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1879\",\"suspend_id\":\"132\",\"product_id\":\"937\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"net_unit_price\":\"39600.0000\",\"unit_price\":\"39600.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"79200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"39600.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1880\",\"suspend_id\":\"132\",\"product_id\":\"884\",\"product_code\":\"12\",\"product_name\":\"Baked shrimp with glass noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1881\",\"suspend_id\":\"132\",\"product_id\":\"906\",\"product_code\":\"21a\",\"product_name\":\"Massaman Curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1882\",\"suspend_id\":\"132\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1883\",\"suspend_id\":\"132\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"14000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1884\",\"suspend_id\":\"132\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-30 11:44:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (989, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"133\",\"date\":\"2023-10-30 13:59:05\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"64285.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1911\",\"suspend_id\":\"133\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1912\",\"suspend_id\":\"133\",\"product_id\":\"892\",\"product_code\":\"16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1913\",\"suspend_id\":\"133\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1914\",\"suspend_id\":\"133\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1915\",\"suspend_id\":\"133\",\"product_id\":\"1081\",\"product_code\":\"154\",\"product_name\":\"Chrysanthemum Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1916\",\"suspend_id\":\"133\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1917\",\"suspend_id\":\"133\",\"product_id\":\"960\",\"product_code\":\"53\",\"product_name\":\"Glutinous rice balls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1918\",\"suspend_id\":\"133\",\"product_id\":\"1087\",\"product_code\":\"160\",\"product_name\":\"Milk Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-30 12:59:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (990, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"131\",\"date\":\"2023-10-30 13:54:43\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"27735.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"t4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1907\",\"suspend_id\":\"131\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1908\",\"suspend_id\":\"131\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1909\",\"suspend_id\":\"131\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1910\",\"suspend_id\":\"131\",\"product_id\":\"1110\",\"product_code\":\"PR171\",\"product_name\":\"HOT COFFEE\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-30 13:30:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (991, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"134\",\"date\":\"2023-10-30 18:39:44\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"27627.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1919\",\"suspend_id\":\"134\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1920\",\"suspend_id\":\"134\",\"product_id\":\"937\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1921\",\"suspend_id\":\"134\",\"product_id\":\"1057\",\"product_code\":\"130\",\"product_name\":\"Redbull\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1922\",\"suspend_id\":\"134\",\"product_id\":\"1050\",\"product_code\":\"123\",\"product_name\":\"Singha Beer\",\"net_unit_price\":\"1800.0000\",\"unit_price\":\"1800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1800.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-30 17:40:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (992, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"135\",\"date\":\"2023-10-30 18:40:16\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"5375.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"vip1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1923\",\"suspend_id\":\"135\",\"product_id\":\"1091\",\"product_code\":\"164\",\"product_name\":\"Water Melon Juice\",\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-30 18:23:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (993, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"137\",\"date\":\"2023-10-30 18:53:10\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"34077.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"vip2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1925\",\"suspend_id\":\"137\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1926\",\"suspend_id\":\"137\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1927\",\"suspend_id\":\"137\",\"product_id\":\"941\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1928\",\"suspend_id\":\"137\",\"product_id\":\"1092\",\"product_code\":\"165\",\"product_name\":\"Strawberry Juice\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1929\",\"suspend_id\":\"137\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-30 18:32:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (994, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"136\",\"date\":\"2023-10-30 18:47:56\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"2687.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T5\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1924\",\"suspend_id\":\"136\",\"product_id\":\"1064\",\"product_code\":\"137\",\"product_name\":\"Mojito\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-30 18:44:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (995, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"138\",\"date\":\"2023-10-30 18:55:15\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"30960.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"preaw\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1930\",\"suspend_id\":\"138\",\"product_id\":\"945\",\"product_code\":\"39\",\"product_name\":\"Hat Yai-style fried chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1931\",\"suspend_id\":\"138\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1932\",\"suspend_id\":\"138\",\"product_id\":\"937\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1933\",\"suspend_id\":\"138\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1934\",\"suspend_id\":\"138\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-30 18:52:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (996, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"140\",\"date\":\"2023-10-31 19:08:07\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"14\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"151252.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1939\",\"suspend_id\":\"140\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1940\",\"suspend_id\":\"140\",\"product_id\":\"935\",\"product_code\":\"35c\",\"product_name\":\"Spicy papaya salad (mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1941\",\"suspend_id\":\"140\",\"product_id\":\"945\",\"product_code\":\"39\",\"product_name\":\"Hat Yai-style fried chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1942\",\"suspend_id\":\"140\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1943\",\"suspend_id\":\"140\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1944\",\"suspend_id\":\"140\",\"product_id\":\"1010\",\"product_code\":\"92\",\"product_name\":\"Regency Vsop\",\"net_unit_price\":\"85000.0000\",\"unit_price\":\"85000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"85000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"85000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1945\",\"suspend_id\":\"140\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1946\",\"suspend_id\":\"140\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1947\",\"suspend_id\":\"140\",\"product_id\":\"1057\",\"product_code\":\"130\",\"product_name\":\"Redbull\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1948\",\"suspend_id\":\"140\",\"product_id\":\"1112\",\"product_code\":\"PR173\",\"product_name\":\"Ichitan orange\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-31 18:23:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (997, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"139\",\"date\":\"2023-10-31 19:17:07\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"37302.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1949\",\"suspend_id\":\"139\",\"product_id\":\"864\",\"product_code\":\"5\",\"product_name\":\"Tom yum fried rice\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1950\",\"suspend_id\":\"139\",\"product_id\":\"884\",\"product_code\":\"12\",\"product_name\":\"Baked shrimp with glass noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1951\",\"suspend_id\":\"139\",\"product_id\":\"917\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1952\",\"suspend_id\":\"139\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1953\",\"suspend_id\":\"139\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1954\",\"suspend_id\":\"139\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-31 18:54:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (998, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"201\",\"date\":\"2023-10-31 20:14:29\",\"reference_no\":\"SALE2023\\/10\\/0008\",\"customer_id\":\"8\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25081.8200\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"1618.1800\",\"order_tax_id\":\"4\",\"order_tax\":\"2002.5000\",\"total_tax\":\"3620.6800\",\"shipping\":\"0.0000\",\"grand_total\":\"28702.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"ad98caac314eb176c034faab967f67ebd8ef4f82201ba0b1e0d2534c16590758\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 19:26:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (999, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"200\",\"date\":\"2023-10-31 20:00:29\",\"reference_no\":\"SALE2023\\/10\\/0007\",\"customer_id\":\"7\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2895.0000\",\"total_tax\":\"2895.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"41495.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-10-31 20:01:24\",\"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\":\"fef987defb8e7a3a6035e49b7217f5c061fe5d29b55e6dd5ecf8d4e55b083e18\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 19:26:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1000, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"199\",\"date\":\"2023-10-31 19:58:04\",\"reference_no\":\"SALE2023\\/10\\/0006\",\"customer_id\":\"7\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"40890.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"3127.5000\",\"total_tax\":\"3936.5900\",\"shipping\":\"0.0000\",\"grand_total\":\"44827.5000\",\"sale_status\":\"pending\",\"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\":\"5ef896aeb4e4e160e5f0adc6116a3b0becacedcdea37b472d6ebfb620df2cb20\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 19:26:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1001, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"197\",\"date\":\"2023-10-31 19:50:46\",\"reference_no\":\"SALE2023\\/10\\/0005\",\"customer_id\":\"5\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"136350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"10226.2500\",\"total_tax\":\"10226.2500\",\"shipping\":\"0.0000\",\"grand_total\":\"146576.2500\",\"sale_status\":\"pending\",\"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\":\"1b54001b26ff70641131906aef63bfdab61b25cc46e0649d28c7640344120b79\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 19:27:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1002, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"202\",\"date\":\"2023-10-31 20:28:32\",\"reference_no\":\"SALE2023\\/10\\/0009\",\"customer_id\":\"8\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2002.5000\",\"total_tax\":\"2002.5000\",\"shipping\":\"0.0000\",\"grand_total\":\"28702.5000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"f78a8c0bd9e01edc4695151fb9188f628cc1bcf494cf50ca18efa761387b86dd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"830\",\"sale_id\":\"202\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"831\",\"sale_id\":\"202\",\"product_id\":\"915\",\"product_code\":\"25\",\"product_name\":\"Boiled chicken in fish sauce\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"832\",\"sale_id\":\"202\",\"product_id\":\"928\",\"product_code\":\"30c\",\"product_name\":\"Stir-fried beef mixed vegetables\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-10-31 19:29:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1003, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"141\",\"date\":\"2023-10-31 20:25:26\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"12\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"47945.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1958\",\"suspend_id\":\"141\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"3236.3600\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"35600.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1959\",\"suspend_id\":\"141\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1960\",\"suspend_id\":\"141\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1961\",\"suspend_id\":\"141\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-10-31 19:39:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1004, 'Quantity adjustment is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"1\",\"date\":\"2023-10-31 21:45:00\",\"reference_no\":\"2023\\/10\\/0001\",\"warehouse_id\":\"1\",\"note\":\"\",\"attachment\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"1\",\"adjustment_id\":\"1\",\"product_id\":\"1010\",\"option_id\":null,\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":\"92\",\"product_name\":\"Regency Vsop\",\"image\":\"no_image.png\",\"details\":null,\"variant\":null}]}', '2023-10-31 20:50:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1005, 'Quantity adjustment is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"2\",\"date\":\"2023-10-31 21:48:00\",\"reference_no\":\"2023\\/10\\/0002\",\"warehouse_id\":\"1\",\"note\":\"\",\"attachment\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"2\",\"adjustment_id\":\"2\",\"product_id\":\"1112\",\"option_id\":null,\"quantity\":\"17.0000\",\"warehouse_id\":\"1\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":\"PR173\",\"product_name\":\"Ichitan orange\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null}]}', '2023-10-31 20:51:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1006, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"212\",\"date\":\"2023-10-31 21:50:43\",\"reference_no\":\"SALE2023\\/10\\/0018\",\"customer_id\":\"9\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"32700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2452.5000\",\"total_tax\":\"2452.5000\",\"shipping\":\"0.0000\",\"grand_total\":\"35152.5000\",\"sale_status\":\"pending\",\"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\":\"59f358806780197864da5cffd2e8afaf63007e6d5208be5caeaefe719bd68da2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 21:34:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1007, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"211\",\"date\":\"2023-10-31 21:48:03\",\"reference_no\":\"SALE2023\\/10\\/0017\",\"customer_id\":\"10\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"667.5000\",\"total_tax\":\"667.5000\",\"shipping\":\"0.0000\",\"grand_total\":\"9567.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-10-31 21:50:33\",\"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\":\"fa93445c40a0679fae699d5e321cc8c77797bc872dafedce021a7ea8f8fa3ba5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 21:34:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1008, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"210\",\"date\":\"2023-10-31 21:27:53\",\"reference_no\":\"SALE2023\\/10\\/0016\",\"customer_id\":\"10\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"675.0000\",\"total_tax\":\"675.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"9675.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-10-31 21:30:21\",\"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\":\"655da9bab5415b5b504b123b8b5b01bea8f72be6ef866ab4f35df9a53674f0b5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 21:34:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1009, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"209\",\"date\":\"2023-10-31 21:13:21\",\"reference_no\":\"SALE2023\\/10\\/0015\",\"customer_id\":\"13\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1560.0000\",\"total_tax\":\"1560.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"22360.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-10-31 21:14:12\",\"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\":\"f4ba0be508609f630e5ba525c8a9f2a7aa6bc6bef9c367666f10667d9bbcd77f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 21:34:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1010, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"208\",\"date\":\"2023-10-31 20:58:47\",\"reference_no\":\"SALE2023\\/10\\/0014\",\"customer_id\":\"13\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1905.0000\",\"total_tax\":\"1905.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"27305.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-10-31 21:04:16\",\"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\":\"6884c14c770994183ecbf8348cb829f92e29d25e6fb1b5348c405eed97ad1396\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 21:34:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1011, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"207\",\"date\":\"2023-10-31 20:55:56\",\"reference_no\":\"SALE2023\\/10\\/0013\",\"customer_id\":\"7\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16990.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"1335.0000\",\"total_tax\":\"2144.0900\",\"shipping\":\"0.0000\",\"grand_total\":\"19135.0000\",\"sale_status\":\"pending\",\"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\":\"375ba8992f401b01690d423cf2c3d64d3eabfc9bb8dc667ac0a1a6d251c22ba8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 21:34:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1012, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"205\",\"date\":\"2023-10-31 20:48:06\",\"reference_no\":\"SALE2023\\/10\\/0011\",\"customer_id\":\"7\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25890.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2002.5000\",\"total_tax\":\"2811.5900\",\"shipping\":\"0.0000\",\"grand_total\":\"28702.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-10-31 20:50:44\",\"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\":\"8e876e96e81e532618eca116f0881fcea11c69967e803f63e21e81d85023bba3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 21:34:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1013, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"203\",\"date\":\"2023-10-31 20:33:33\",\"reference_no\":\"SALE2023\\/10\\/0010\",\"customer_id\":\"8\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1485.0000\",\"total_tax\":\"1485.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"21285.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-10-31 20:43:43\",\"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\":\"ec09674a01618c79b0316f82d43c4a1c565d0f68e445ada272bc16e69f37b2ae\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 21:34:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1014, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"182\",\"date\":\"2023-10-29 22:55:44\",\"reference_no\":\"SALE2023\\/10\\/0004\",\"customer_id\":\"6\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20990.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"1635.0000\",\"total_tax\":\"2444.0900\",\"shipping\":\"0.0000\",\"grand_total\":\"23435.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"1817c8c87485826ee58a9ad3b0625657d58b58d374ccd3042f4fd04a8133d098\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 21:34:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1015, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"171\",\"date\":\"2023-10-29 20:12:04\",\"reference_no\":\"SALE2023\\/10\\/0003\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29990.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2310.0000\",\"total_tax\":\"3119.0900\",\"shipping\":\"0.0000\",\"grand_total\":\"33110.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-10-29 20:21:53\",\"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\":\"5b8d823d24ff22c2b43cbb0fb6c4aa14a026e5cfacc0b49768049bcabe3d9ce0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 21:34:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1016, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"167\",\"date\":\"2023-10-29 19:50:25\",\"reference_no\":\"SALE2023\\/10\\/0002\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8590.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"705.0000\",\"total_tax\":\"1514.0900\",\"shipping\":\"0.0000\",\"grand_total\":\"10105.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"215cf1cf3428471fc0f6e163faae1ab130f7a4c582508a121c46a97e639479e1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 21:34:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1017, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"165\",\"date\":\"2023-10-29 19:17:00\",\"reference_no\":\"SALE2023\\/10\\/0001\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28290.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2182.5000\",\"total_tax\":\"2991.5900\",\"shipping\":\"0.0000\",\"grand_total\":\"31282.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-10-29 19:51:11\",\"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\":\"ddb13f0d19d46d2db01b4db7904cd1d7ebdcfde50c47bf9f139a80f76f4b437d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-10-31 21:34:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1018, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"142\",\"date\":\"2023-11-01 11:49:19\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"45257.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1962\",\"suspend_id\":\"142\",\"product_id\":\"886\",\"product_code\":\"14\",\"product_name\":\"Rice noodles with fish curry\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1963\",\"suspend_id\":\"142\",\"product_id\":\"1113\",\"product_code\":\"PR1000\",\"product_name\":\"BRAISED BEEF STEW\",\"net_unit_price\":\"10400.0000\",\"unit_price\":\"10400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10400.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10400.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1964\",\"suspend_id\":\"142\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1965\",\"suspend_id\":\"142\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1966\",\"suspend_id\":\"142\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1967\",\"suspend_id\":\"142\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-01 11:24:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1019, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"143\",\"date\":\"2023-11-01 12:38:59\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"13\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"51922.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1968\",\"suspend_id\":\"143\",\"product_id\":\"960\",\"product_code\":\"53\",\"product_name\":\"Glutinous rice balls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1969\",\"suspend_id\":\"143\",\"product_id\":\"882\",\"product_code\":\"11c\",\"product_name\":\"Noodles in gravy sauce (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1970\",\"suspend_id\":\"143\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1971\",\"suspend_id\":\"143\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1972\",\"suspend_id\":\"143\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1973\",\"suspend_id\":\"143\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1974\",\"suspend_id\":\"143\",\"product_id\":\"1081\",\"product_code\":\"154\",\"product_name\":\"Chrysanthemum Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1975\",\"suspend_id\":\"143\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1976\",\"suspend_id\":\"143\",\"product_id\":\"1085\",\"product_code\":\"158\",\"product_name\":\"Thai Iced Black Coffee\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1977\",\"suspend_id\":\"143\",\"product_id\":\"1083\",\"product_code\":\"156\",\"product_name\":\"Bael Fruit Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-01 11:39:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1020, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"146\",\"date\":\"2023-11-01 16:45:08\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"16125.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1987\",\"suspend_id\":\"146\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1988\",\"suspend_id\":\"146\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1989\",\"suspend_id\":\"146\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-01 15:50:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1021, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"147\",\"date\":\"2023-11-01 17:33:40\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"58157.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1998\",\"suspend_id\":\"147\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"1999\",\"suspend_id\":\"147\",\"product_id\":\"876\",\"product_code\":\"10a\",\"product_name\":\"Stir-fried glass noodles (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2000\",\"suspend_id\":\"147\",\"product_id\":\"957\",\"product_code\":\"50b\",\"product_name\":\"Mixed set (small)\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2001\",\"suspend_id\":\"147\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2002\",\"suspend_id\":\"147\",\"product_id\":\"942\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2003\",\"suspend_id\":\"147\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2004\",\"suspend_id\":\"147\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2005\",\"suspend_id\":\"147\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"1800.0000\",\"unit_price\":\"1800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1800.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-01 16:35:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1022, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"148\",\"date\":\"2023-11-01 18:18:04\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"36765.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2016\",\"suspend_id\":\"148\",\"product_id\":\"1092\",\"product_code\":\"165\",\"product_name\":\"Strawberry Juice\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2017\",\"suspend_id\":\"148\",\"product_id\":\"955\",\"product_code\":\"49\",\"product_name\":\"Seafood hot pan\",\"net_unit_price\":\"10900.0000\",\"unit_price\":\"10900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2018\",\"suspend_id\":\"148\",\"product_id\":\"877\",\"product_code\":\"10b\",\"product_name\":\"Stir-fried glass noodles (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2019\",\"suspend_id\":\"148\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2020\",\"suspend_id\":\"148\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-01 17:23:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1023, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"221\",\"date\":\"2023-11-01 19:10:09\",\"reference_no\":\"SALE2023\\/11\\/0019\",\"customer_id\":\"8\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"173400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"13005.0000\",\"total_tax\":\"13005.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"186405.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-01 19:13:17\",\"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\":\"b61283e2b29328671f84103b54fa3d207ee14596560caee6e946d50129015a14\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-01 18:15:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1024, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"149\",\"date\":\"2023-11-01 19:18:53\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"44827.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2055\",\"suspend_id\":\"149\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2056\",\"suspend_id\":\"149\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2057\",\"suspend_id\":\"149\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2058\",\"suspend_id\":\"149\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2059\",\"suspend_id\":\"149\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2060\",\"suspend_id\":\"149\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2061\",\"suspend_id\":\"149\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-01 18:27:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1025, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"144\",\"date\":\"2023-11-01 14:55:41\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"537.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"vip\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1978\",\"suspend_id\":\"144\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-01 18:27:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1026, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"151\",\"date\":\"2023-11-01 19:18:42\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"3762.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"VIP1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2054\",\"suspend_id\":\"151\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-01 18:28:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1027, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"222\",\"date\":\"2023-11-01 19:20:46\",\"reference_no\":\"SALE2023\\/11\\/0020\",\"customer_id\":\"4\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1185.0000\",\"total_tax\":\"1185.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"16985.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-01 19:23:39\",\"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\":\"9cae219a332c15323ddb5757faabca4da951a4d9570b74bfbb2dbde7b367f9a6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-01 18:32:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1028, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"223\",\"date\":\"2023-11-01 19:26:29\",\"reference_no\":\"SALE2023\\/11\\/0021\",\"customer_id\":\"4\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"79900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"5992.5000\",\"total_tax\":\"5992.5000\",\"shipping\":\"0.0000\",\"grand_total\":\"85892.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-01 19:30:46\",\"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\":\"25dd61e5dee36527ccd41fd2b763719682fa3f6e4f6e9b496fb6c748e0827fc9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-01 18:32:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1029, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"150\",\"date\":\"2023-11-01 19:32:48\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"129537.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2070\",\"suspend_id\":\"150\",\"product_id\":\"877\",\"product_code\":\"10b\",\"product_name\":\"Stir-fried glass noodles (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2071\",\"suspend_id\":\"150\",\"product_id\":\"976\",\"product_code\":\"64\",\"product_name\":\"Jameson 1780\",\"net_unit_price\":\"99000.0000\",\"unit_price\":\"99000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"99000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"99000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2072\",\"suspend_id\":\"150\",\"product_id\":\"887\",\"product_code\":\"14b\",\"product_name\":\"Rice noodles with coconut milk curry\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2073\",\"suspend_id\":\"150\",\"product_id\":\"1036\",\"product_code\":\"109\",\"product_name\":\"Guiness Stout (Big)\",\"net_unit_price\":\"2700.0000\",\"unit_price\":\"2700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2700.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-01 18:35:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1030, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"152\",\"date\":\"2023-11-01 19:41:05\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"23650.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2077\",\"suspend_id\":\"152\",\"product_id\":\"877\",\"product_code\":\"10b\",\"product_name\":\"Stir-fried glass noodles (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2078\",\"suspend_id\":\"152\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2079\",\"suspend_id\":\"152\",\"product_id\":\"887\",\"product_code\":\"14b\",\"product_name\":\"Rice noodles with coconut milk curry\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2080\",\"suspend_id\":\"152\",\"product_id\":\"1036\",\"product_code\":\"109\",\"product_name\":\"Guiness Stout (Big)\",\"net_unit_price\":\"2700.0000\",\"unit_price\":\"2700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2700.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-01 18:41:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1031, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"228\",\"date\":\"2023-11-01 19:35:00\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0205\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-01 19:44:26\",\"total_items\":\"0\",\"pos\":\"1\",\"paid\":\"129537.5000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"84f87f90b74976b57660a9b547e52f13b6bc46e83e7e37352a68a9720475f276\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"955\",\"sale_id\":\"228\",\"product_id\":\"877\",\"product_code\":\"10b\",\"product_name\":\"Stir-fried glass noodles (seafood)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"0.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"956\",\"sale_id\":\"228\",\"product_id\":\"976\",\"product_code\":\"64\",\"product_name\":\"Jameson 1780\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"99000.0000\",\"unit_price\":\"99000.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"99000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"0.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"957\",\"sale_id\":\"228\",\"product_id\":\"887\",\"product_code\":\"14b\",\"product_name\":\"Rice noodles with coconut milk curry\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"0.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"958\",\"sale_id\":\"228\",\"product_id\":\"1036\",\"product_code\":\"109\",\"product_name\":\"Guiness Stout (Big)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2700.0000\",\"unit_price\":\"2700.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"0.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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-01 18:46:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1032, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"230\",\"date\":\"2023-11-01 19:42:33\",\"reference_no\":\"SALE2023\\/11\\/0022\",\"customer_id\":\"7\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"37.5000\",\"total_tax\":\"37.5000\",\"shipping\":\"0.0000\",\"grand_total\":\"537.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"55b6d05701481b3bed7971c3a082def28c28196f0c458c44e21120f869d2dabd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-01 18:46:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1033, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"231\",\"date\":\"2023-11-01 19:54:19\",\"reference_no\":\"SALE2023\\/11\\/0023\",\"customer_id\":\"5\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"36600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2745.0000\",\"total_tax\":\"2745.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"39345.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"53a1045beea462cc0d2f5cc19d75f931cf87a63a604dccdfe9971aa4de53a13d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-01 19:30:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1034, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"232\",\"date\":\"2023-11-01 19:59:37\",\"reference_no\":\"SALE2023\\/11\\/0024\",\"customer_id\":\"5\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28390.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2190.0000\",\"total_tax\":\"2999.0900\",\"shipping\":\"0.0000\",\"grand_total\":\"31390.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"6b448849b8828f86d80c03a8e0a746c38d23a0309eac75c49fd64f43b72756a2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-01 19:33:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1035, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"234\",\"date\":\"2023-11-01 20:39:39\",\"reference_no\":\"SALE2023\\/11\\/0026\",\"customer_id\":\"8\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1335.0000\",\"total_tax\":\"1335.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"19135.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"c64752607c5f8b7c930bd888e035d1da6d610e9bd193d53503b19f6cdb35939d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-01 19:41:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1036, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"236\",\"date\":\"2023-11-01 20:46:26\",\"reference_no\":\"SALE2023\\/11\\/0028\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"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\":\"4\",\"order_tax\":\"742.5000\",\"total_tax\":\"742.5000\",\"shipping\":\"0.0000\",\"grand_total\":\"10642.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-01 20:47:28\",\"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\":\"203088ed996c6d4065aedd931e0d2060a680d8be0f7b2805ac68b038abfc4223\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-01 19:54:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1037, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"235\",\"date\":\"2023-11-01 20:46:12\",\"reference_no\":\"SALE2023\\/11\\/0027\",\"customer_id\":\"22\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1117.5000\",\"total_tax\":\"1117.5000\",\"shipping\":\"0.0000\",\"grand_total\":\"16017.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"c9532dcd533afe92281cf0a1ef63ca292c9d4cdb8386761f7c0c850286084675\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-01 19:57:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1038, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"153\",\"date\":\"2023-11-01 20:22:14\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"4837.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"t17\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2081\",\"suspend_id\":\"153\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-01 20:04:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1039, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"213\",\"date\":\"2023-10-31 22:35:00\",\"reference_no\":\"SALE2023\\/10\\/0012\",\"customer_id\":\"13\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":null,\"total\":\"-28500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"-2137.5000\",\"total_tax\":\"-2137.5000\",\"shipping\":\"0.0000\",\"grand_total\":\"-30637.5000\",\"sale_status\":\"returned\",\"payment_status\":\"paid\",\"payment_term\":null,\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":null,\"pos\":\"0\",\"paid\":\"-30637.5000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":\"SR2023\\/10\\/0001\",\"sale_id\":\"206\",\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":null,\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-01 20:33:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1040, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"206\",\"date\":\"2023-10-31 20:50:00\",\"reference_no\":\"SALE2023\\/10\\/0012\",\"customer_id\":\"13\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"2137.5000\",\"total_tax\":\"2137.5000\",\"shipping\":\"0.0000\",\"grand_total\":\"30637.5000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":\"213\",\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":\"SR2023\\/10\\/0001\",\"sale_id\":null,\"return_sale_total\":\"-30637.5000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"7b1b9afa217fa9cc4bffe0a1b2a8c29cd8177b80496f44885b411d5e45a6ac95\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"852\",\"sale_id\":\"206\",\"product_id\":\"952\",\"product_code\":\"46\",\"product_name\":\"Fried fish with three flavors sauce\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"13000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"853\",\"sale_id\":\"206\",\"product_id\":\"919\",\"product_code\":\"27c\",\"product_name\":\"Stir-fried with holy basil (beef)\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"854\",\"sale_id\":\"206\",\"product_id\":\"1039\",\"product_code\":\"112\",\"product_name\":\"Budweiser\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2800.0000\",\"unit_price\":\"2800.0000\",\"quantity\":\"2.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\":\"2800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-01 20:34:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1041, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"145\",\"date\":\"2023-11-01 19:36:43\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"9567.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"peaw\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2074\",\"suspend_id\":\"145\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2075\",\"suspend_id\":\"145\",\"product_id\":\"1114\",\"product_code\":\"PR1001\",\"product_name\":\"Fried egg\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2076\",\"suspend_id\":\"145\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-01 21:14:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1042, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"154\",\"date\":\"2023-11-02 12:43:54\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"29777.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2082\",\"suspend_id\":\"154\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2083\",\"suspend_id\":\"154\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2084\",\"suspend_id\":\"154\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2085\",\"suspend_id\":\"154\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2086\",\"suspend_id\":\"154\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-02 11:59:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1043, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"155\",\"date\":\"2023-11-02 14:19:39\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"45365.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2087\",\"suspend_id\":\"155\",\"product_id\":\"863\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2088\",\"suspend_id\":\"155\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2089\",\"suspend_id\":\"155\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2090\",\"suspend_id\":\"155\",\"product_id\":\"1002\",\"product_code\":\"84\",\"product_name\":\"Martinellis\",\"net_unit_price\":\"9000.0000\",\"unit_price\":\"9000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2091\",\"suspend_id\":\"155\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-02 13:35:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1044, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"157\",\"date\":\"2023-11-02 16:27:15\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"36550.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2115\",\"suspend_id\":\"157\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2116\",\"suspend_id\":\"157\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2117\",\"suspend_id\":\"157\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2118\",\"suspend_id\":\"157\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2119\",\"suspend_id\":\"157\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2120\",\"suspend_id\":\"157\",\"product_id\":\"1050\",\"product_code\":\"123\",\"product_name\":\"Singha Beer\",\"net_unit_price\":\"1800.0000\",\"unit_price\":\"1800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1800.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-02 15:51:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1045, 'Product is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1050\",\"code\":\"123\",\"name\":\"Singha Beer\",\"unit\":\"1\",\"cost\":\"1800.0000\",\"price\":\"1800.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\":null,\"warehouse\":null,\"barcode_symbology\":\"code145\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"singha-beer\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-11-02 16:40:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1046, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"156\",\"date\":\"2023-11-02 16:12:12\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"33647.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2100\",\"suspend_id\":\"156\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2101\",\"suspend_id\":\"156\",\"product_id\":\"887\",\"product_code\":\"14b\",\"product_name\":\"Rice noodles with coconut milk curry\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2102\",\"suspend_id\":\"156\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2103\",\"suspend_id\":\"156\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-02 16:47:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1047, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"158\",\"date\":\"2023-11-02 17:53:49\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"39452.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T5\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2126\",\"suspend_id\":\"158\",\"product_id\":\"937\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2127\",\"suspend_id\":\"158\",\"product_id\":\"1115\",\"product_code\":\"995\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2128\",\"suspend_id\":\"158\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2129\",\"suspend_id\":\"158\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2130\",\"suspend_id\":\"158\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2131\",\"suspend_id\":\"158\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-02 17:36:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1048, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"159\",\"date\":\"2023-11-02 18:53:24\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"3762.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2132\",\"suspend_id\":\"159\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-02 18:25:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1049, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"160\",\"date\":\"2023-11-02 19:44:37\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"38377.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2147\",\"suspend_id\":\"160\",\"product_id\":\"901\",\"product_code\":\"19a\",\"product_name\":\"Panang curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2148\",\"suspend_id\":\"160\",\"product_id\":\"869\",\"product_code\":\"8c\",\"product_name\":\"Pad Thai (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2149\",\"suspend_id\":\"160\",\"product_id\":\"942\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2150\",\"suspend_id\":\"160\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2151\",\"suspend_id\":\"160\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2152\",\"suspend_id\":\"160\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-02 19:18:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1050, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"164\",\"date\":\"2023-11-02 20:33:58\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"48052.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"home\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2182\",\"suspend_id\":\"164\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2183\",\"suspend_id\":\"164\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2184\",\"suspend_id\":\"164\",\"product_id\":\"890\",\"product_code\":\"15b\",\"product_name\":\"Noodles (beef)\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-02 19:42:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1051, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"162\",\"date\":\"2023-11-02 20:14:11\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"36980.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2167\",\"suspend_id\":\"162\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2168\",\"suspend_id\":\"162\",\"product_id\":\"942\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2169\",\"suspend_id\":\"162\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2170\",\"suspend_id\":\"162\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-02 19:46:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1052, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"161\",\"date\":\"2023-11-02 21:20:35\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"11\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"63962.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"t7\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2210\",\"suspend_id\":\"161\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2211\",\"suspend_id\":\"161\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2212\",\"suspend_id\":\"161\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2213\",\"suspend_id\":\"161\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2214\",\"suspend_id\":\"161\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2215\",\"suspend_id\":\"161\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2216\",\"suspend_id\":\"161\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-02 20:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1053, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"163\",\"date\":\"2023-11-02 20:12:48\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"5375.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T11\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2165\",\"suspend_id\":\"163\",\"product_id\":\"1014\",\"product_code\":\"95\",\"product_name\":\"Gordon Gin\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2166\",\"suspend_id\":\"163\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-02 20:39:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1054, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"254\",\"date\":\"2023-11-02 21:39:23\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0224\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"375.0000\",\"total_tax\":\"375.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5375.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\":\"5375.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\":\"20f5a5d6d0d7ba15b238f581bd12e0a3b95c0d4773fd0efd182cf2cb93c25ab9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1047\",\"sale_id\":\"254\",\"product_id\":\"1014\",\"product_code\":\"95\",\"product_name\":\"Gordon Gin\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1048\",\"sale_id\":\"254\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-02 20:49:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1055, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"165\",\"date\":\"2023-11-02 21:26:50\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"31390.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"alppe\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2217\",\"suspend_id\":\"165\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2218\",\"suspend_id\":\"165\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2219\",\"suspend_id\":\"165\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2220\",\"suspend_id\":\"165\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2221\",\"suspend_id\":\"165\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2222\",\"suspend_id\":\"165\",\"product_id\":\"887\",\"product_code\":\"14b\",\"product_name\":\"Rice noodles with coconut milk curry\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-02 21:35:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1056, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"264\",\"date\":\"2023-11-03 14:52:00\",\"reference_no\":\"SALE2023\\/11\\/0035\",\"customer_id\":\"22\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-03 14:56:00\",\"total_items\":\"0\",\"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\":\"33c84eeab32fb0c84c9ad0abb951247f1d27d19db091af7f75a91da69e848019\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-03 13:56:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1057, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"166\",\"date\":\"2023-11-03 16:42:23\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"19672.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2226\",\"suspend_id\":\"166\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2227\",\"suspend_id\":\"166\",\"product_id\":\"861\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2228\",\"suspend_id\":\"166\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-03 15:56:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1058, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"167\",\"date\":\"2023-11-03 19:03:20\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"14\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"82022.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2310\",\"suspend_id\":\"167\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2311\",\"suspend_id\":\"167\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2312\",\"suspend_id\":\"167\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2313\",\"suspend_id\":\"167\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2314\",\"suspend_id\":\"167\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2315\",\"suspend_id\":\"167\",\"product_id\":\"887\",\"product_code\":\"14b\",\"product_name\":\"Rice noodles with coconut milk curry\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2316\",\"suspend_id\":\"167\",\"product_id\":\"1087\",\"product_code\":\"160\",\"product_name\":\"Milk Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2317\",\"suspend_id\":\"167\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2318\",\"suspend_id\":\"167\",\"product_id\":\"1091\",\"product_code\":\"164\",\"product_name\":\"Water Melon Juice\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2319\",\"suspend_id\":\"167\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2320\",\"suspend_id\":\"167\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2321\",\"suspend_id\":\"167\",\"product_id\":\"958\",\"product_code\":\"51\",\"product_name\":\"Pandan custard bread\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-03 18:03:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1059, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"169\",\"date\":\"2023-11-03 19:33:37\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"60952.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2345\",\"suspend_id\":\"169\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2346\",\"suspend_id\":\"169\",\"product_id\":\"869\",\"product_code\":\"8c\",\"product_name\":\"Pad Thai (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2347\",\"suspend_id\":\"169\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2348\",\"suspend_id\":\"169\",\"product_id\":\"894\",\"product_code\":\"17b\",\"product_name\":\"Green curry (beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2349\",\"suspend_id\":\"169\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2350\",\"suspend_id\":\"169\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2351\",\"suspend_id\":\"169\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2352\",\"suspend_id\":\"169\",\"product_id\":\"901\",\"product_code\":\"19a\",\"product_name\":\"Panang curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2353\",\"suspend_id\":\"169\",\"product_id\":\"959\",\"product_code\":\"52\",\"product_name\":\"Sago pearls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-03 18:35:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1060, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"168\",\"date\":\"2023-11-03 19:42:37\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"45902.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2354\",\"suspend_id\":\"168\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2355\",\"suspend_id\":\"168\",\"product_id\":\"911\",\"product_code\":\"24\",\"product_name\":\"Tom Yum (shrimp\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2356\",\"suspend_id\":\"168\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2357\",\"suspend_id\":\"168\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2358\",\"suspend_id\":\"168\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2359\",\"suspend_id\":\"168\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2360\",\"suspend_id\":\"168\",\"product_id\":\"959\",\"product_code\":\"52\",\"product_name\":\"Sago pearls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2361\",\"suspend_id\":\"168\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-03 18:44:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1061, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"170\",\"date\":\"2023-11-03 19:27:51\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"37840.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T7\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2337\",\"suspend_id\":\"170\",\"product_id\":\"864\",\"product_code\":\"5\",\"product_name\":\"Tom yum fried rice\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2338\",\"suspend_id\":\"170\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2339\",\"suspend_id\":\"170\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2340\",\"suspend_id\":\"170\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2341\",\"suspend_id\":\"170\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2342\",\"suspend_id\":\"170\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2343\",\"suspend_id\":\"170\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2344\",\"suspend_id\":\"170\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-03 18:49:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1062, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"171\",\"date\":\"2023-11-03 20:33:42\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"28810.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2375\",\"suspend_id\":\"171\",\"product_id\":\"1072\",\"product_code\":\"145\",\"product_name\":\"Long Island Iced Tea\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2376\",\"suspend_id\":\"171\",\"product_id\":\"1073\",\"product_code\":\"146\",\"product_name\":\"Tequila Sunrise\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2377\",\"suspend_id\":\"171\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2378\",\"suspend_id\":\"171\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2379\",\"suspend_id\":\"171\",\"product_id\":\"1117\",\"product_code\":\"185\",\"product_name\":\"FRENCH  FRIES\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-03 19:55:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1063, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"265\",\"date\":\"2023-11-03 16:06:52\",\"reference_no\":\"SALE2023\\/11\\/0036\",\"customer_id\":\"6\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1485.0000\",\"total_tax\":\"1485.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"21285.0000\",\"sale_status\":\"pending\",\"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\":\"f66f6c31d68009719ab99d892ee3b179b7b106ea8f398dc652afc9ac29005aba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-03 20:56:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1064, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"173\",\"date\":\"2023-11-03 23:08:06\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"11\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"54932.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2407\",\"suspend_id\":\"173\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2408\",\"suspend_id\":\"173\",\"product_id\":\"863\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"29700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2409\",\"suspend_id\":\"173\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2410\",\"suspend_id\":\"173\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2411\",\"suspend_id\":\"173\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2412\",\"suspend_id\":\"173\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-03 22:08:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1065, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"172\",\"date\":\"2023-11-03 23:33:50\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"51385.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T7\",\"shipping\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2417\",\"suspend_id\":\"172\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2418\",\"suspend_id\":\"172\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2419\",\"suspend_id\":\"172\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2420\",\"suspend_id\":\"172\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2421\",\"suspend_id\":\"172\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2422\",\"suspend_id\":\"172\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2423\",\"suspend_id\":\"172\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-03 22:50:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1066, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"175\",\"date\":\"2023-11-04 12:16:58\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"15963.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2454\",\"suspend_id\":\"175\",\"product_id\":\"869\",\"product_code\":\"8c\",\"product_name\":\"Pad Thai (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2455\",\"suspend_id\":\"175\",\"product_id\":\"1048\",\"product_code\":\"121\",\"product_name\":\"Chang Beer (Can)\",\"net_unit_price\":\"1800.0000\",\"unit_price\":\"1800.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3600.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1800.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 11:27:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1067, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"176\",\"date\":\"2023-11-04 12:47:25\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"21758.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"VIP1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2465\",\"suspend_id\":\"176\",\"product_id\":\"1085\",\"product_code\":\"158\",\"product_name\":\"Thai Iced Black Coffee\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2466\",\"suspend_id\":\"176\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2467\",\"suspend_id\":\"176\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2468\",\"suspend_id\":\"176\",\"product_id\":\"938\",\"product_code\":\"37b\",\"product_name\":\"Spicy minced (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2469\",\"suspend_id\":\"176\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 12:05:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1068, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"174\",\"date\":\"2023-11-04 12:07:49\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"26\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"68230.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2436\",\"suspend_id\":\"174\",\"product_id\":\"861\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2437\",\"suspend_id\":\"174\",\"product_id\":\"930\",\"product_code\":\"32\",\"product_name\":\"Fried boiled egg with tamarind sauce\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2438\",\"suspend_id\":\"174\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2439\",\"suspend_id\":\"174\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2440\",\"suspend_id\":\"174\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2441\",\"suspend_id\":\"174\",\"product_id\":\"960\",\"product_code\":\"53\",\"product_name\":\"Glutinous rice balls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2442\",\"suspend_id\":\"174\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2443\",\"suspend_id\":\"174\",\"product_id\":\"1085\",\"product_code\":\"158\",\"product_name\":\"Thai Iced Black Coffee\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2444\",\"suspend_id\":\"174\",\"product_id\":\"1118\",\"product_code\":\"189\",\"product_name\":\"FISH SAUCE CHILI\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2445\",\"suspend_id\":\"174\",\"product_id\":\"1119\",\"product_code\":\"190\",\"product_name\":\"JAEW DIPPING SAUCE\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2446\",\"suspend_id\":\"174\",\"product_id\":\"1120\",\"product_code\":\"191\",\"product_name\":\"THAI SPICY SEAFOOD DIPPING SAUCE\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2447\",\"suspend_id\":\"174\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"13.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"13.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 12:36:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1069, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"177\",\"date\":\"2023-11-04 13:49:12\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"38549.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2474\",\"suspend_id\":\"177\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2475\",\"suspend_id\":\"177\",\"product_id\":\"917\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2476\",\"suspend_id\":\"177\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2477\",\"suspend_id\":\"177\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2478\",\"suspend_id\":\"177\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2479\",\"suspend_id\":\"177\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 13:32:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1070, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"178\",\"date\":\"2023-11-04 14:59:16\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"52148.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2484\",\"suspend_id\":\"178\",\"product_id\":\"864\",\"product_code\":\"5\",\"product_name\":\"Tom yum fried rice\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2485\",\"suspend_id\":\"178\",\"product_id\":\"925\",\"product_code\":\"29\",\"product_name\":\"Stir-fried chicken with ginger\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2486\",\"suspend_id\":\"178\",\"product_id\":\"861\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2487\",\"suspend_id\":\"178\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2488\",\"suspend_id\":\"178\",\"product_id\":\"1072\",\"product_code\":\"145\",\"product_name\":\"Long Island Iced Tea\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2489\",\"suspend_id\":\"178\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 14:14:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1071, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"179\",\"date\":\"2023-11-04 15:30:07\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"4138.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2490\",\"suspend_id\":\"179\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 15:17:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1072, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"180\",\"date\":\"2023-11-04 16:45:53\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"38194.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T19\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2497\",\"suspend_id\":\"180\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2498\",\"suspend_id\":\"180\",\"product_id\":\"914\",\"product_code\":\"24d\",\"product_name\":\"Tom Yum (seafood\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2499\",\"suspend_id\":\"180\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2500\",\"suspend_id\":\"180\",\"product_id\":\"1115\",\"product_code\":\"995\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2501\",\"suspend_id\":\"180\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 15:58:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1073, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"181\",\"date\":\"2023-11-04 17:20:07\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"591.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"VIP1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2502\",\"suspend_id\":\"181\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 16:20:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1074, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 3\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900284\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table3@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1075, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"8\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 5\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900286\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table5@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1076, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"9\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 6\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900287\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table6@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1077, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"10\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 7\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900288\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table7@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1078, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"11\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 8\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900289\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table8@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1079, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"12\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 9\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900290\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table9@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1080, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"13\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 10\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900291\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table10@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1081, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"14\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 11\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900292\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table11@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1082, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"15\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 12\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900293\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table12@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1083, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"16\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 13\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900294\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table13@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1084, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"17\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 14\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900295\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table14@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1085, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"19\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 16\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900297\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table16@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1086, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"20\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 17\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900298\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table17@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1087, 'Customer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"21\",\"group_id\":\"3\",\"group_name\":\"customer\",\"customer_group_id\":\"1\",\"customer_group_name\":\"General\",\"name\":\"Table 18\",\"company\":\"kunakorn thai restaurant\",\"vat_no\":\"\",\"address\":\"City Park Wuse 2 Abuja\",\"city\":\"wuse\",\"state\":\"Abuja\",\"postal_code\":\"900299\",\"country\":\"Nigeria\",\"phone\":\"08000000000\",\"email\":\"table18@kunakorn.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\":\"\"}}', '2023-11-04 16:44:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1088, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"183\",\"date\":\"2023-11-04 18:36:57\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"28380.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"vip1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2507\",\"suspend_id\":\"183\",\"product_id\":\"1121\",\"product_code\":\"182\",\"product_name\":\"Andre\",\"net_unit_price\":\"12000.0000\",\"unit_price\":\"12000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"24000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"12000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 18:28:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1089, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"182\",\"date\":\"2023-11-04 19:09:39\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"28734.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2520\",\"suspend_id\":\"182\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2521\",\"suspend_id\":\"182\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2522\",\"suspend_id\":\"182\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2523\",\"suspend_id\":\"182\",\"product_id\":\"1095\",\"product_code\":\"168\",\"product_name\":\"After-glo\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2524\",\"suspend_id\":\"182\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 18:46:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1090, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"289\",\"date\":\"2023-11-04 17:21:00\",\"reference_no\":\"SALE2023\\/11\\/0037\",\"customer_id\":\"5\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1852.5000\",\"total_tax\":\"1852.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"26552.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":\"1\",\"updated_at\":\"2023-11-04 17:27:55\",\"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\":\"ee762178afa35e4e248d088a80cc2d0ce3bbd21c773df9192bfb1bba916d38f5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-04 18:52:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1091, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"290\",\"date\":\"2023-11-04 17:33:53\",\"reference_no\":\"SALE2023\\/11\\/0038\",\"customer_id\":\"4\",\"customer\":\"kunakorn thai restaurant\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"592.5000\",\"total_tax\":\"592.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"8492.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"1c093991a193cbf9b058094d193e28af11d708f75305e6bc8743508401a63e7e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-04 18:52:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1092, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"292\",\"date\":\"2023-11-04 17:59:13\",\"reference_no\":\"SALE2023\\/11\\/0039\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1335.0000\",\"total_tax\":\"1335.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"19135.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"52e93f758f8a845414b9e46e716c5c0183f82df6af059272e11839a56f784798\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-04 18:52:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1093, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"293\",\"date\":\"2023-11-04 18:10:52\",\"reference_no\":\"SALE2023\\/11\\/0040\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"43900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3292.5000\",\"total_tax\":\"3292.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"47192.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-04 18:14:37\",\"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\":\"6f0aa25389b0f747e22be939c84db9fb908b7d4e3b19c23aa5080c9f61865eca\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-04 18:53:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1094, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"185\",\"date\":\"2023-11-04 21:02:36\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"15254.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T7\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2537\",\"suspend_id\":\"185\",\"product_id\":\"913\",\"product_code\":\"24c\",\"product_name\":\"Tom Yum (seafood\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2538\",\"suspend_id\":\"185\",\"product_id\":\"1082\",\"product_code\":\"155\",\"product_name\":\"Roselle Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2539\",\"suspend_id\":\"185\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 20:27:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1095, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"187\",\"date\":\"2023-11-04 21:25:51\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"24714.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2542\",\"suspend_id\":\"187\",\"product_id\":\"1081\",\"product_code\":\"154\",\"product_name\":\"Chrysanthemum Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2543\",\"suspend_id\":\"187\",\"product_id\":\"882\",\"product_code\":\"11c\",\"product_name\":\"Noodles in gravy sauce (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2544\",\"suspend_id\":\"187\",\"product_id\":\"960\",\"product_code\":\"53\",\"product_name\":\"Glutinous rice balls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2545\",\"suspend_id\":\"187\",\"product_id\":\"1122\",\"product_code\":\"200\",\"product_name\":\"EXTRA  NOODLES\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2546\",\"suspend_id\":\"187\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 20:31:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1096, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"186\",\"date\":\"2023-11-04 22:05:09\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"8041.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2553\",\"suspend_id\":\"186\",\"product_id\":\"1006\",\"product_code\":\"88\",\"product_name\":\"Four Cousin White\",\"net_unit_price\":\"6300.0000\",\"unit_price\":\"6300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6300.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6300.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2554\",\"suspend_id\":\"186\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 21:06:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1097, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"301\",\"date\":\"2023-11-04 22:06:04\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0259\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"37.5000\",\"total_tax\":\"37.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"53.7500\",\"grand_total\":\"591.2500\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"591.2500\",\"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\":\"08b05b05479cc48845c2be961bd76936c08f8ebc5c7b57b40d143c10ff01a740\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1255\",\"sale_id\":\"301\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-04 21:06:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1098, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"184\",\"date\":\"2023-11-04 22:05:47\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"40205.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2555\",\"suspend_id\":\"184\",\"product_id\":\"954\",\"product_code\":\"48\",\"product_name\":\"Beef hot pan\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2556\",\"suspend_id\":\"184\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2557\",\"suspend_id\":\"184\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2558\",\"suspend_id\":\"184\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2559\",\"suspend_id\":\"184\",\"product_id\":\"1006\",\"product_code\":\"88\",\"product_name\":\"Four Cousin White\",\"net_unit_price\":\"6300.0000\",\"unit_price\":\"6300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6300.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6300.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 21:07:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1099, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"188\",\"date\":\"2023-11-04 22:55:22\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"11825.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2562\",\"suspend_id\":\"188\",\"product_id\":\"1029\",\"product_code\":\"103b\",\"product_name\":\"Olmeca White (shot)\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2563\",\"suspend_id\":\"188\",\"product_id\":\"996\",\"product_code\":\"78\",\"product_name\":\"Escudo Rojo\",\"net_unit_price\":\"7000.0000\",\"unit_price\":\"7000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-04 22:02:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1100, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"312\",\"date\":\"2023-11-05 13:49:33\",\"reference_no\":\"SALE2023\\/11\\/0049\",\"customer_id\":\"39\",\"customer\":\"VIP 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1560.0000\",\"total_tax\":\"1560.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"22360.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-05 14:34:44\",\"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\":\"a2203b4b1feb6f49c9616eedaecfffe0f482cb5133f26d27572d1e8510cb226d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-05 13:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1101, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"308\",\"date\":\"2023-11-05 12:21:21\",\"reference_no\":\"SALE2023\\/11\\/0045\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1927.5000\",\"total_tax\":\"1927.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"27627.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"637d132e67849e256e82d960369fb6332741712ef40c033be39ae5598073968b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-05 13:37:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1102, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"307\",\"date\":\"2023-11-05 12:20:26\",\"reference_no\":\"SALE2023\\/11\\/0044\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"47700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3577.5000\",\"total_tax\":\"3577.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"51277.5000\",\"sale_status\":\"pending\",\"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\":\"bc93c0ff0b988ab5bdcaec76bcc51da63798a6f99fd326af5479fd5138813eab\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-05 13:38:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1103, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"306\",\"date\":\"2023-11-05 12:19:18\",\"reference_no\":\"SALE2023\\/11\\/0043\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1185.0000\",\"total_tax\":\"1185.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"16985.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"7b45d9ed301220113647e6055e52a4d2a03ca4323c8047db5f27ce3db6155955\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-05 13:38:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1104, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"305\",\"date\":\"2023-11-05 12:18:25\",\"reference_no\":\"SALE2023\\/11\\/0042\",\"customer_id\":\"39\",\"customer\":\"VIP 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"33790.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2595.0000\",\"total_tax\":\"3404.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"37195.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"f2b2cbaa9580e0c75b4374a6cc8ee4d515ac29bc2c0966289ba26eac78e83c95\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-05 13:38:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1105, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"304\",\"date\":\"2023-11-05 12:01:00\",\"reference_no\":\"SALE2023\\/11\\/0041\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24890.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"1927.5000\",\"total_tax\":\"2736.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"27627.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":\"1\",\"updated_at\":\"2023-11-05 12:04:37\",\"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\":\"1472e05594f8f1894827ead41b6a2918cafd2ffd5aa9b5a2032dff25b8b302d6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-05 13:38:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1106, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"310\",\"date\":\"2023-11-05 12:58:30\",\"reference_no\":\"SALE2023\\/11\\/0047\",\"customer_id\":\"39\",\"customer\":\"VIP 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"35790.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2745.0000\",\"total_tax\":\"3554.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"39345.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-05 13:06:16\",\"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\":\"baaa4f9ab4e9bcd4db88e9abbc330d18368dd984825a5cd71818af93eec75516\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1289\",\"sale_id\":\"310\",\"product_id\":\"857\",\"product_code\":\"2\",\"product_name\":\"Lamb Biryani\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1290\",\"sale_id\":\"310\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"SER\",\"tax_name\":\"Service Charge\",\"tax_rate\":\"10.0000\",\"image\":\"8636ba83bb39673eeb3e425e710a8ef8.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1291\",\"sale_id\":\"310\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1292\",\"sale_id\":\"310\",\"product_id\":\"889\",\"product_code\":\"15a\",\"product_name\":\"Noodles (chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-05 13:41:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1107, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"321\",\"date\":\"2023-11-05 16:02:00\",\"reference_no\":\"SALE2023\\/11\\/0057\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2242.5000\",\"total_tax\":\"2242.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"32142.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"3\",\"updated_at\":\"2023-11-05 16:11:20\",\"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\":\"bc39c9cddc18eba6416d06c84a68c87b148901df69e82f1a107027fad1562942\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-05 15:22:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1108, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"323\",\"date\":\"2023-11-05 17:46:30\",\"reference_no\":\"SALE2023\\/11\\/0058\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1927.5000\",\"total_tax\":\"1927.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"27627.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-05 17:49:51\",\"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\":\"bf9aa7b3cfde9276d309790abf59edeec8f88d333b509e6628a1e20dcc25c35b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1531\",\"sale_id\":\"323\",\"product_id\":\"1055\",\"product_code\":\"128\",\"product_name\":\"Maltina\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1532\",\"sale_id\":\"323\",\"product_id\":\"941\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"20700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1533\",\"sale_id\":\"323\",\"product_id\":\"1124\",\"product_code\":\"998\",\"product_name\":\"BEAN  PAEP  \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-05 18:01:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1109, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"189\",\"date\":\"2023-11-05 19:22:26\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"14663.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2564\",\"suspend_id\":\"189\",\"product_id\":\"960\",\"product_code\":\"53\",\"product_name\":\"Glutinous rice balls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2565\",\"suspend_id\":\"189\",\"product_id\":\"935\",\"product_code\":\"35c\",\"product_name\":\"Spicy papaya salad (mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2566\",\"suspend_id\":\"189\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-05 18:22:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1110, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"190\",\"date\":\"2023-11-05 20:29:00\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"15254.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T19\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2567\",\"suspend_id\":\"190\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2568\",\"suspend_id\":\"190\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-05 19:29:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1111, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"336\",\"date\":\"2023-11-06 15:25:00\",\"reference_no\":\"SALE2023\\/11\\/0066\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"150.0000\",\"total_tax\":\"150.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"2150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"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\":\"3fd038c2d7893aed047accec6f1827417066eaf6559d7576ecd4e65176f9b927\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1631\",\"sale_id\":\"336\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-06 14:27:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1112, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"191\",\"date\":\"2023-11-06 14:51:01\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"22231.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2569\",\"suspend_id\":\"191\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2570\",\"suspend_id\":\"191\",\"product_id\":\"863\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-06 15:28:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1113, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"334\",\"date\":\"2023-11-06 14:48:51\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0268\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8090.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"667.5000\",\"total_tax\":\"1476.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"956.7500\",\"grand_total\":\"10524.2500\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"10524.2500\",\"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\":\"03a737882dec462cf65933c716a76f48cd58f26c6361fc0571a2a137e15e8c8d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1629\",\"sale_id\":\"334\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"SER\",\"tax_name\":\"Service Charge\",\"tax_rate\":\"10.0000\",\"image\":\"8636ba83bb39673eeb3e425e710a8ef8.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-06 15:49:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1114, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"333\",\"date\":\"2023-11-06 14:46:00\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0267\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11090.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"892.5000\",\"total_tax\":\"1701.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"1279.2500\",\"grand_total\":\"14071.7500\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"14071.7500\",\"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\":\"0041bc352c87e5e22347264fa5c02324d7a2ccea64edf65220d784b3b61602e7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1627\",\"sale_id\":\"333\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"SER\",\"tax_name\":\"Service Charge\",\"tax_rate\":\"10.0000\",\"image\":\"8636ba83bb39673eeb3e425e710a8ef8.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1628\",\"sale_id\":\"333\",\"product_id\":\"1118\",\"product_code\":\"189\",\"product_name\":\"FISH SAUCE CHILI\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-06 15:49:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1115, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"340\",\"date\":\"2023-11-06 18:55:00\",\"reference_no\":\"SALE2023\\/11\\/0068\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1890.0000\",\"total_tax\":\"1890.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"27090.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-06 19:17:32\",\"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\":\"fc392f8420bab979d6118b0c6888191a8141354f1d5da422a9789b610ad34731\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-06 19:01:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1116, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"342\",\"date\":\"2023-11-07 12:40:30\",\"reference_no\":\"SALE2023\\/11\\/0069\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"40990.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"3135.0000\",\"total_tax\":\"3944.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"44935.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"82dcd85fcc50286bce4f7b76116247b2a300e16064935fa1b302f2f029f33149\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-07 13:04:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1117, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"343\",\"date\":\"2023-11-07 13:56:58\",\"reference_no\":\"SALE2023\\/11\\/0070\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"71100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"5332.5000\",\"total_tax\":\"5332.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"76432.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"95984f369a9f9acc57d71097fe6c666c6760344a0c5ee861e731414a81d9d2c9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-07 14:47:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1118, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"349\",\"date\":\"2023-11-07 16:36:02\",\"reference_no\":\"SALE2023\\/11\\/0072\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15590.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"1230.0000\",\"total_tax\":\"2039.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"17630.0000\",\"sale_status\":\"pending\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"17630.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"a5740a1ffdad8f17509f5453b8741e29f71e0677c866f32595345ad2bdad48c1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-07 16:18:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1119, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"347\",\"date\":\"2023-11-07 15:22:07\",\"reference_no\":\"SALE2023\\/11\\/0071\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"27800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2085.0000\",\"total_tax\":\"2085.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"29885.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-07 15:45:34\",\"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\":\"5edb7f04671dcdc8cd745316d55c7a8cd5a6f31a879b248a341f0ee3c8c2524d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-07 16:19:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1120, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"350\",\"date\":\"2023-11-07 16:45:36\",\"reference_no\":\"SALE2023\\/11\\/0073\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"35390.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2715.0000\",\"total_tax\":\"3524.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"38915.0000\",\"sale_status\":\"pending\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"0\",\"paid\":\"38915.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"93612e385290d47570cb3faf24b9c6694a9a4a73488ec4bdede2ee7f8adbf3f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-07 16:48:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1121, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":false,\"items\":null}', '2023-11-07 16:48:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1122, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"354\",\"date\":\"2023-11-07 17:57:53\",\"reference_no\":\"SALE2023\\/11\\/0074\",\"customer_id\":\"34\",\"customer\":\"Table 14\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"525.0000\",\"total_tax\":\"525.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"7525.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"7c9b6b9bd3f024672d028aebe128ac6e1336f6a585df4e9bca427e15253fa446\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-07 17:10:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1123, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"356\",\"date\":\"2023-11-07 18:27:24\",\"reference_no\":\"SALE2023\\/11\\/0075\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1935.0000\",\"total_tax\":\"1935.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"27735.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-07 18:56:08\",\"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\":\"1fa27bdc128b578c5a8482511c9c0657e433abb9beee1ec980c2fe0d89fd427e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-07 18:32:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1124, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"357\",\"date\":\"2023-11-07 18:47:43\",\"reference_no\":\"SALE2023\\/11\\/0076\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26990.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2085.0000\",\"total_tax\":\"2894.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"29885.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-07 19:14:52\",\"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\":\"60bd6408ea8603eb3ecfc7958756a796a7eb996072b1ea0d1cf99cf89c557730\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-07 18:35:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1125, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"361\",\"date\":\"2023-11-07 19:41:58\",\"reference_no\":\"SALE2023\\/11\\/0078\",\"customer_id\":\"31\",\"customer\":\"Table 11\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"892.5000\",\"total_tax\":\"892.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"12792.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"5f30e6a760bc463854a83ea806ed56e978da17f31a5d748ef8bb0b1ecf9ccd2b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-07 19:24:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1126, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"192\",\"date\":\"2023-11-07 20:09:58\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"16\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"79700.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"PEAW\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2591\",\"suspend_id\":\"192\",\"product_id\":\"905\",\"product_code\":\"20\",\"product_name\":\"Chicken leg curry\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2592\",\"suspend_id\":\"192\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2593\",\"suspend_id\":\"192\",\"product_id\":\"930\",\"product_code\":\"32\",\"product_name\":\"Fried boiled egg with tamarind sauce\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2594\",\"suspend_id\":\"192\",\"product_id\":\"937\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2595\",\"suspend_id\":\"192\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2596\",\"suspend_id\":\"192\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2597\",\"suspend_id\":\"192\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2598\",\"suspend_id\":\"192\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2599\",\"suspend_id\":\"192\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2600\",\"suspend_id\":\"192\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2601\",\"suspend_id\":\"192\",\"product_id\":\"1055\",\"product_code\":\"128\",\"product_name\":\"Maltina\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-07 20:13:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1127, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"359\",\"date\":\"2023-11-07 19:21:00\",\"reference_no\":\"SALE2023\\/11\\/0077\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"77200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"5790.0000\",\"total_tax\":\"5790.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"82990.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-07 21:18:14\",\"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\":\"2383dd73fe44e30af6c9497c4da1ef51083d441dc7626df54145c91397a7d935\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-07 20:19:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1128, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"193\",\"date\":\"2023-11-08 12:51:45\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"67639.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2620\",\"suspend_id\":\"193\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2621\",\"suspend_id\":\"193\",\"product_id\":\"880\",\"product_code\":\"11a\",\"product_name\":\"Noodles in gravy sauce (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2622\",\"suspend_id\":\"193\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2623\",\"suspend_id\":\"193\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2624\",\"suspend_id\":\"193\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2625\",\"suspend_id\":\"193\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2626\",\"suspend_id\":\"193\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-08 12:27:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1129, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"194\",\"date\":\"2023-11-08 13:27:49\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"12\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"51557.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"peaw\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2631\",\"suspend_id\":\"194\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2632\",\"suspend_id\":\"194\",\"product_id\":\"917\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2633\",\"suspend_id\":\"194\",\"product_id\":\"1087\",\"product_code\":\"160\",\"product_name\":\"Milk Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2634\",\"suspend_id\":\"194\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"6.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-08 12:48:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1130, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"195\",\"date\":\"2023-11-08 18:29:38\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"12298.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"|T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2635\",\"suspend_id\":\"195\",\"product_id\":\"863\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2636\",\"suspend_id\":\"195\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-08 17:53:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1131, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"196\",\"date\":\"2023-11-08 20:02:39\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"22231.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"vip1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2637\",\"suspend_id\":\"196\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2638\",\"suspend_id\":\"196\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2639\",\"suspend_id\":\"196\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-08 19:03:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1132, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"370\",\"date\":\"2023-11-08 19:24:00\",\"reference_no\":\"SALE2023\\/11\\/0079\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-08 20:04:17\",\"total_items\":\"0\",\"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\":\"03ebad189495ab26f2b640032760664e6235bccec5f61d696006fe79093e2796\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-08 19:04:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1133, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"197\",\"date\":\"2023-11-09 14:10:49\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"41\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"253646.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2650\",\"suspend_id\":\"197\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2651\",\"suspend_id\":\"197\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2652\",\"suspend_id\":\"197\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2653\",\"suspend_id\":\"197\",\"product_id\":\"914\",\"product_code\":\"24d\",\"product_name\":\"Tom Yum (seafood\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2654\",\"suspend_id\":\"197\",\"product_id\":\"919\",\"product_code\":\"27c\",\"product_name\":\"Stir-fried with holy basil (beef)\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"39600.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2655\",\"suspend_id\":\"197\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2656\",\"suspend_id\":\"197\",\"product_id\":\"945\",\"product_code\":\"39\",\"product_name\":\"Hat Yai-style fried chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2657\",\"suspend_id\":\"197\",\"product_id\":\"863\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2658\",\"suspend_id\":\"197\",\"product_id\":\"890\",\"product_code\":\"15b\",\"product_name\":\"Noodles (beef)\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2659\",\"suspend_id\":\"197\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2660\",\"suspend_id\":\"197\",\"product_id\":\"1067\",\"product_code\":\"140\",\"product_name\":\"Cosmopolitan\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2661\",\"suspend_id\":\"197\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2662\",\"suspend_id\":\"197\",\"product_id\":\"1064\",\"product_code\":\"137\",\"product_name\":\"Mojito\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2663\",\"suspend_id\":\"197\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2664\",\"suspend_id\":\"197\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2665\",\"suspend_id\":\"197\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2666\",\"suspend_id\":\"197\",\"product_id\":\"1093\",\"product_code\":\"166\",\"product_name\":\"Lemon Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2667\",\"suspend_id\":\"197\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-09 13:54:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1134, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"198\",\"date\":\"2023-11-09 14:14:43\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"65155.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2668\",\"suspend_id\":\"198\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2669\",\"suspend_id\":\"198\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2670\",\"suspend_id\":\"198\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2671\",\"suspend_id\":\"198\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2672\",\"suspend_id\":\"198\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2673\",\"suspend_id\":\"198\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-09 14:21:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1135, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"372\",\"date\":\"2023-11-09 13:00:00\",\"reference_no\":\"SALE2023\\/11\\/0080\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"248000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"18600.0000\",\"total_tax\":\"18600.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"266600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"3\",\"updated_at\":\"2023-11-09 15:07:32\",\"total_items\":\"54\",\"pos\":\"0\",\"paid\":\"266600.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"acefa094fdca66e1d829ac045cdd4a7fbeb9798c8a1287240154f316ba93fe36\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1994\",\"sale_id\":\"372\",\"product_id\":\"1067\",\"product_code\":\"140\",\"product_name\":\"Cosmopolitan\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1995\",\"sale_id\":\"372\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1996\",\"sale_id\":\"372\",\"product_id\":\"1064\",\"product_code\":\"137\",\"product_name\":\"Mojito\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1997\",\"sale_id\":\"372\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1998\",\"sale_id\":\"372\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1999\",\"sale_id\":\"372\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2000\",\"sale_id\":\"372\",\"product_id\":\"1093\",\"product_code\":\"166\",\"product_name\":\"Lemon Juice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2001\",\"sale_id\":\"372\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2002\",\"sale_id\":\"372\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2003\",\"sale_id\":\"372\",\"product_id\":\"890\",\"product_code\":\"15b\",\"product_name\":\"Noodles (beef)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2004\",\"sale_id\":\"372\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2005\",\"sale_id\":\"372\",\"product_id\":\"919\",\"product_code\":\"27c\",\"product_name\":\"Stir-fried with holy basil (beef)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"39600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2006\",\"sale_id\":\"372\",\"product_id\":\"914\",\"product_code\":\"24d\",\"product_name\":\"Tom Yum (seafood\\/creamy soup)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2007\",\"sale_id\":\"372\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2008\",\"sale_id\":\"372\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2009\",\"sale_id\":\"372\",\"product_id\":\"945\",\"product_code\":\"39\",\"product_name\":\"Hat Yai-style fried chicken\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2010\",\"sale_id\":\"372\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"13000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2011\",\"sale_id\":\"372\",\"product_id\":\"863\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2012\",\"sale_id\":\"372\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2013\",\"sale_id\":\"372\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-09 14:23:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1136, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"378\",\"date\":\"2023-11-09 15:54:32\",\"reference_no\":\"SALE2023\\/11\\/0084\",\"customer_id\":\"30\",\"customer\":\"Table 10\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"187.5000\",\"total_tax\":\"187.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"2687.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"811df7da3580822a636d23adc599c4cc3b3d9d60e484d15b5dd8ae06e64c4b28\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-09 15:04:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1137, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"373\",\"date\":\"2023-11-09 13:20:20\",\"reference_no\":\"SALE2023\\/11\\/0081\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"49600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3720.0000\",\"total_tax\":\"3720.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"53320.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-09 14:27:05\",\"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\":\"615f276d6dc6fac99355a7a6d15d20b500898f87690d1f14bcce258fa62f2801\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-09 15:09:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1138, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"199\",\"date\":\"2023-11-09 16:17:42\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"52266.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T10\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2674\",\"suspend_id\":\"199\",\"product_id\":\"1115\",\"product_code\":\"995\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2675\",\"suspend_id\":\"199\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2676\",\"suspend_id\":\"199\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2677\",\"suspend_id\":\"199\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2678\",\"suspend_id\":\"199\",\"product_id\":\"907\",\"product_code\":\"21b\",\"product_name\":\"Massaman Curry (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-09 15:59:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1139, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"201\",\"date\":\"2023-11-09 16:39:18\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"43989.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2689\",\"suspend_id\":\"201\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"1618.1800\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2690\",\"suspend_id\":\"201\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2691\",\"suspend_id\":\"201\",\"product_id\":\"1126\",\"product_code\":\"996\",\"product_name\":\"HOT TEA\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2692\",\"suspend_id\":\"201\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-09 16:17:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1140, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"379\",\"date\":\"2023-11-09 16:26:47\",\"reference_no\":\"SALE2023\\/11\\/0085\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"35581.8200\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"1618.1800\",\"order_tax_id\":\"4\",\"order_tax\":\"2790.0000\",\"total_tax\":\"4408.1800\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"39990.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-09 16:31:28\",\"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\":\"036d8480f387914ddddef024343219ab522fa13683cf7c8575846761b864cad4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-09 16:17:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1141, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"200\",\"date\":\"2023-11-09 16:38:01\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"29326.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2684\",\"suspend_id\":\"200\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2685\",\"suspend_id\":\"200\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2686\",\"suspend_id\":\"200\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2687\",\"suspend_id\":\"200\",\"product_id\":\"1029\",\"product_code\":\"103b\",\"product_name\":\"Olmeca White (shot)\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2688\",\"suspend_id\":\"200\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-09 16:33:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1142, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"375\",\"date\":\"2023-11-09 14:59:00\",\"reference_no\":\"SALE2023\\/11\\/0082\",\"customer_id\":\"30\",\"customer\":\"Table 10\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"49200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3690.0000\",\"total_tax\":\"3690.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"52890.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-09 16:31:04\",\"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\":\"a9fa6d911bdf623ce229b42538b8854ef202e884800db6c6811f9a1d98568207\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-09 16:34:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1143, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"377\",\"date\":\"2023-11-09 15:52:31\",\"reference_no\":\"SALE2023\\/11\\/0083\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2197.5000\",\"total_tax\":\"2197.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"31497.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-09 17:29:35\",\"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\":\"5bc3471a2833e3083295749a76c885ecdeb2beae41e613ba1c8f8e9de63bf5b6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-09 16:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1144, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"385\",\"date\":\"2023-11-09 17:55:31\",\"reference_no\":\"SALE2023\\/11\\/0086\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"100000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"7500.0000\",\"total_tax\":\"7500.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"107500.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-09 17:57:23\",\"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\":\"4144245f86c3d4257cc50b601c62d8c38100f234048f36f8f6eeeef36ce53213\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-09 17:33:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1145, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"389\",\"date\":\"2023-11-09 20:47:00\",\"reference_no\":\"SALE2023\\/11\\/0087\",\"customer_id\":\"32\",\"customer\":\"Table 12\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"87200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"6540.0000\",\"total_tax\":\"6540.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"93740.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"3\",\"updated_at\":\"2023-11-09 21:45:30\",\"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\":\"5890432e1b3db9e1893c5661cca10c8b955eaef0914f1c714a4a2e0884f5fafb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-09 21:02:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1146, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"202\",\"date\":\"2023-11-09 23:03:59\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"34529.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2697\",\"suspend_id\":\"202\",\"product_id\":\"937\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2698\",\"suspend_id\":\"202\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2699\",\"suspend_id\":\"202\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2700\",\"suspend_id\":\"202\",\"product_id\":\"1037\",\"product_code\":\"110\",\"product_name\":\"Desperado\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2701\",\"suspend_id\":\"202\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-09 22:11:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1147, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"391\",\"date\":\"2023-11-09 22:37:30\",\"reference_no\":\"SALE2023\\/11\\/0088\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2265.0000\",\"total_tax\":\"2265.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"32465.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-09 23:05:33\",\"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\":\"c856316442287d6a94d7db9843087af4129a40a91a5b90194084e5c40209db3a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 10:59:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1148, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"393\",\"date\":\"2023-11-10 14:17:45\",\"reference_no\":\"SALE2023\\/11\\/0089\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"892.5000\",\"total_tax\":\"892.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"12792.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"ca31c484773c2583b8549b468f59b3682439c7a6dd6cac580d8cfea2ad7591de\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 13:50:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1149, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"203\",\"date\":\"2023-11-10 14:51:08\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"14663.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T5\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2702\",\"suspend_id\":\"203\",\"product_id\":\"954\",\"product_code\":\"48\",\"product_name\":\"Beef hot pan\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2703\",\"suspend_id\":\"203\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2704\",\"suspend_id\":\"203\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2705\",\"suspend_id\":\"203\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-10 13:51:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1150, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"397\",\"date\":\"2023-11-10 16:20:43\",\"reference_no\":\"SALE2023\\/11\\/0092\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1492.5000\",\"total_tax\":\"1492.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"21392.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"5d5fe226686ed78abffd0fbf7e89d5c615aeb8b949659c636f62fef5926b1039\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 15:41:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1151, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"204\",\"date\":\"2023-11-10 16:42:03\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"23531.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2706\",\"suspend_id\":\"204\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2707\",\"suspend_id\":\"204\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-10 15:42:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1152, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"396\",\"date\":\"2023-11-10 16:19:56\",\"reference_no\":\"SALE2023\\/11\\/0091\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"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\":\"4\",\"order_tax\":\"742.5000\",\"total_tax\":\"742.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"10642.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-10 16:33:11\",\"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\":\"a9487542aa5480da553eb876f6960f73713c654bdd53892a9828dd1cf09b623f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 15:46:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1153, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"205\",\"date\":\"2023-11-10 16:46:30\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"11706.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2708\",\"suspend_id\":\"205\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2709\",\"suspend_id\":\"205\",\"product_id\":\"950\",\"product_code\":\"44\",\"product_name\":\"Deep fried chicken rolls (8 pcs)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-10 15:46:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1154, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"400\",\"date\":\"2023-11-10 16:53:26\",\"reference_no\":\"SALE2023\\/11\\/0093\",\"customer_id\":\"30\",\"customer\":\"Table 10\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"37.5000\",\"total_tax\":\"37.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"537.5000\",\"sale_status\":\"pending\",\"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\":\"8ec1c4a09856b9f3eb9f245381f338a8aa3a91f89e8c1e4bfc573f91b47c95f6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 16:06:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1155, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"206\",\"date\":\"2023-11-10 17:10:51\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"19\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"105597.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2710\",\"suspend_id\":\"206\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2711\",\"suspend_id\":\"206\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2712\",\"suspend_id\":\"206\",\"product_id\":\"911\",\"product_code\":\"24\",\"product_name\":\"Tom Yum (shrimp\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2713\",\"suspend_id\":\"206\",\"product_id\":\"1106\",\"product_code\":\"179\",\"product_name\":\"Peppered Chicken Meat\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2714\",\"suspend_id\":\"206\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2715\",\"suspend_id\":\"206\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2716\",\"suspend_id\":\"206\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2717\",\"suspend_id\":\"206\",\"product_id\":\"857\",\"product_code\":\"2\",\"product_name\":\"Lamb Biryani\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2718\",\"suspend_id\":\"206\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2719\",\"suspend_id\":\"206\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2720\",\"suspend_id\":\"206\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2721\",\"suspend_id\":\"206\",\"product_id\":\"941\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2722\",\"suspend_id\":\"206\",\"product_id\":\"970\",\"product_code\":\"59b\",\"product_name\":\"Flirt Vodka (shot)\",\"net_unit_price\":\"1800.0000\",\"unit_price\":\"1800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1800.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-10 16:11:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1156, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"402\",\"date\":\"2023-11-10 17:11:00\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0306\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"89300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"6697.5000\",\"total_tax\":\"6697.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"9599.7500\",\"grand_total\":\"105597.2500\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"19\",\"pos\":\"1\",\"paid\":\"105597.2500\",\"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\":\"fbffb6beaa400e2eccc4b48d0eacb3c7ac5525c25f3566674ddc8003a4170f7f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2345\",\"sale_id\":\"402\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"12000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2346\",\"sale_id\":\"402\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2347\",\"sale_id\":\"402\",\"product_id\":\"911\",\"product_code\":\"24\",\"product_name\":\"Tom Yum (shrimp\\/clear soup)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2348\",\"sale_id\":\"402\",\"product_id\":\"1106\",\"product_code\":\"179\",\"product_name\":\"Peppered Chicken Meat\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2349\",\"sale_id\":\"402\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2350\",\"sale_id\":\"402\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"13000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2351\",\"sale_id\":\"402\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2352\",\"sale_id\":\"402\",\"product_id\":\"857\",\"product_code\":\"2\",\"product_name\":\"Lamb Biryani\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2353\",\"sale_id\":\"402\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2354\",\"sale_id\":\"402\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2355\",\"sale_id\":\"402\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2356\",\"sale_id\":\"402\",\"product_id\":\"941\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2357\",\"sale_id\":\"402\",\"product_id\":\"970\",\"product_code\":\"59b\",\"product_name\":\"Flirt Vodka (shot)\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-10 16:17:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1157, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"408\",\"date\":\"2023-11-10 18:03:10\",\"reference_no\":\"SALE2023\\/11\\/0096\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"817.5000\",\"total_tax\":\"817.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"11717.5000\",\"sale_status\":\"pending\",\"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\":\"c08a0558bad56c0f1ef88aed14726010b5e559f9a7ebd7da543d1966a8aa7673\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 17:39:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1158, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"395\",\"date\":\"2023-11-10 15:03:00\",\"reference_no\":\"SALE2023\\/11\\/0090\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"89500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"6712.5000\",\"total_tax\":\"6712.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"96212.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-10 17:09:03\",\"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\":\"a03c1547a82a837bd79d0057af12a15b37896d8fa4bb1d0db34d32551ffe7a1b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 17:40:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1159, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"401\",\"date\":\"2023-11-10 17:08:19\",\"reference_no\":\"SALE2023\\/11\\/0094\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1965.0000\",\"total_tax\":\"1965.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"28165.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-10 17:51:39\",\"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\":\"21f96e4674d14df73cc7b3f12eb624e9645bee6721b0259b5b9d3c47811ede05\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 17:40:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1160, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"386\",\"date\":\"2023-11-09 18:34:37\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0298\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"487.5000\",\"total_tax\":\"487.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"698.7500\",\"grand_total\":\"7686.2500\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"1\",\"paid\":\"7686.2500\",\"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\":\"269124043293afd24ba7ee59751fa87f309a07e9d525fe51abe7d4575248f8c5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2111\",\"sale_id\":\"386\",\"product_id\":\"1029\",\"product_code\":\"103b\",\"product_name\":\"Olmeca White (shot)\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2112\",\"sale_id\":\"386\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-10 17:52:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1161, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"407\",\"date\":\"2023-11-10 17:58:04\",\"reference_no\":\"SALE2023\\/11\\/0095\",\"customer_id\":\"31\",\"customer\":\"Table 11\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"3\",\"order_tax\":\"3170.0000\",\"total_tax\":\"3170.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"34870.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-10 18:59:14\",\"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\":\"626166a5e33e4f5f21cfd8a4a5fe3616df1a4640fb53922bd38ba45c0cb37ea2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 18:40:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1162, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"411\",\"date\":\"2023-11-10 18:46:00\",\"reference_no\":\"SALE2023\\/11\\/0097\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"65190.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"4950.0000\",\"total_tax\":\"5759.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"70950.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-10 19:45:11\",\"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\":\"4f9420a8d56facb3a8ea2d67e596b2b0420fd6344f2fe9498018162c5bc7383d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 19:08:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1163, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"208\",\"date\":\"2023-11-10 20:09:56\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"11\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"78045.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2734\",\"suspend_id\":\"208\",\"product_id\":\"913\",\"product_code\":\"24c\",\"product_name\":\"Tom Yum (seafood\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2735\",\"suspend_id\":\"208\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2736\",\"suspend_id\":\"208\",\"product_id\":\"902\",\"product_code\":\"19b\",\"product_name\":\"Panang curry (beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2737\",\"suspend_id\":\"208\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2738\",\"suspend_id\":\"208\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2739\",\"suspend_id\":\"208\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2740\",\"suspend_id\":\"208\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2741\",\"suspend_id\":\"208\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2742\",\"suspend_id\":\"208\",\"product_id\":\"961\",\"product_code\":\"54\",\"product_name\":\"Crispy red ruby\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2743\",\"suspend_id\":\"208\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-10 19:10:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1164, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"412\",\"date\":\"2023-11-10 19:09:04\",\"reference_no\":\"SALE2023\\/11\\/0098\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"69681.8200\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"1618.1800\",\"order_tax_id\":\"4\",\"order_tax\":\"5347.5000\",\"total_tax\":\"6965.6800\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"76647.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-10 20:24:42\",\"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\":\"7984804e94602ed21c02ba3fa3797617dbe21f31f8cfcc4d70e773d8c89661a7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 19:31:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1165, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"209\",\"date\":\"2023-11-10 20:32:12\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"84312.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2744\",\"suspend_id\":\"209\",\"product_id\":\"902\",\"product_code\":\"19b\",\"product_name\":\"Panang curry (beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2745\",\"suspend_id\":\"209\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"1618.1800\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2746\",\"suspend_id\":\"209\",\"product_id\":\"892\",\"product_code\":\"16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2747\",\"suspend_id\":\"209\",\"product_id\":\"884\",\"product_code\":\"12\",\"product_name\":\"Baked shrimp with glass noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2748\",\"suspend_id\":\"209\",\"product_id\":\"939\",\"product_code\":\"37c\",\"product_name\":\"Spicy chopped meat salad (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2749\",\"suspend_id\":\"209\",\"product_id\":\"977\",\"product_code\":\"65\",\"product_name\":\"William Lawson\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2750\",\"suspend_id\":\"209\",\"product_id\":\"1079\",\"product_code\":\"152\",\"product_name\":\"Chivita Active\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-10 19:32:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1166, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"207\",\"date\":\"2023-11-10 19:42:04\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"22940.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2730\",\"suspend_id\":\"207\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2731\",\"suspend_id\":\"207\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2732\",\"suspend_id\":\"207\",\"product_id\":\"890\",\"product_code\":\"15b\",\"product_name\":\"Noodles (beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2733\",\"suspend_id\":\"207\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-10 19:41:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1167, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"417\",\"date\":\"2023-11-10 21:02:38\",\"reference_no\":\"SALE2023\\/11\\/0099\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"75.0000\",\"total_tax\":\"75.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"1075.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"863b08ccd3c7c61063f0f5ca75b8b2b94b183cf5d8ae201dd5c903dd15d571f7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 20:21:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1168, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"418\",\"date\":\"2023-11-10 21:11:14\",\"reference_no\":\"SALE2023\\/11\\/0100\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"952.5000\",\"total_tax\":\"952.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"13652.5000\",\"sale_status\":\"pending\",\"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\":\"5595cf8050c539d902caea58412ec5d54dacdaed603d7a58781d5e50ed980db1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 20:37:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1169, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"421\",\"date\":\"2023-11-10 22:43:51\",\"reference_no\":\"SALE2023\\/11\\/0101\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1192.5000\",\"total_tax\":\"1192.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"17092.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-10 22:47:48\",\"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\":\"25200f265e115c3b3588efb454a277c68b79a9aa371d229eadd4ddda7af77eeb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-10 21:54:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1170, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"423\",\"date\":\"2023-11-11 14:08:00\",\"reference_no\":\"SALE2023\\/11\\/0102\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"72800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"5460.0000\",\"total_tax\":\"5460.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"78260.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-11 14:43:17\",\"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\":\"de78bcefa7cd73aa65bc02537dc5887bd4e30d4b0c146c65537fb58371326936\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 15:17:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1171, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"428\",\"date\":\"2023-11-11 16:34:35\",\"reference_no\":\"SALE2023\\/11\\/0106\",\"customer_id\":\"29\",\"customer\":\"Table 9\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"967.5000\",\"total_tax\":\"967.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"13867.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"883c224a643e1261fda39a458aaaa2e7ba0c2578fe50cd8d70d99a13b7034a62\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 15:52:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1172, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"427\",\"date\":\"2023-11-11 16:16:04\",\"reference_no\":\"SALE2023\\/11\\/0105\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"450.0000\",\"total_tax\":\"450.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"6450.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"b14d194de757e44e9cb51bb3e616851dcf101a1cae8a933cd36fd3eb4f2995aa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 15:59:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1173, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"426\",\"date\":\"2023-11-11 15:58:00\",\"reference_no\":\"SALE2023\\/11\\/0104\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1635.0000\",\"total_tax\":\"1635.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"23435.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-11 17:13:31\",\"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\":\"38aeb908f02b7220764b77d0a60e03dac60e38135feff8b1dee899b295c9e20d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 16:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1174, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"211\",\"date\":\"2023-11-11 18:09:10\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"39\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"227040.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2766\",\"suspend_id\":\"211\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2767\",\"suspend_id\":\"211\",\"product_id\":\"1061\",\"product_code\":\"134\",\"product_name\":\"Pina Colada\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2768\",\"suspend_id\":\"211\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2769\",\"suspend_id\":\"211\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2770\",\"suspend_id\":\"211\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2771\",\"suspend_id\":\"211\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2772\",\"suspend_id\":\"211\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2773\",\"suspend_id\":\"211\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"2427.2700\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2774\",\"suspend_id\":\"211\",\"product_id\":\"861\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2775\",\"suspend_id\":\"211\",\"product_id\":\"941\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2776\",\"suspend_id\":\"211\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2777\",\"suspend_id\":\"211\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"13000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2778\",\"suspend_id\":\"211\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2779\",\"suspend_id\":\"211\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"7.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2780\",\"suspend_id\":\"211\",\"product_id\":\"1072\",\"product_code\":\"145\",\"product_name\":\"Long Island Iced Tea\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2781\",\"suspend_id\":\"211\",\"product_id\":\"1034\",\"product_code\":\"107\",\"product_name\":\"Star Raddler\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2782\",\"suspend_id\":\"211\",\"product_id\":\"1133\",\"product_code\":\"898\",\"product_name\":\"Fried french fries\",\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-11 17:14:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1175, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"425\",\"date\":\"2023-11-11 15:45:32\",\"reference_no\":\"SALE2023\\/11\\/0103\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"189572.7300\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"2427.2700\",\"order_tax_id\":\"4\",\"order_tax\":\"14400.0000\",\"total_tax\":\"16827.2700\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"206400.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-11 18:01:59\",\"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\":\"9780eb7822c938947dccdac09b503987a7a7e26fa79b2023c06d5854e3b76426\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 17:16:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1176, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"434\",\"date\":\"2023-11-11 17:41:41\",\"reference_no\":\"SALE2023\\/11\\/0108\",\"customer_id\":\"31\",\"customer\":\"Table 11\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1005.0000\",\"total_tax\":\"1005.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"14405.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"b162124c83d4a166a1c6cee9be78fcde8d58bbae7167aa1489111cbcad7f48ed\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 17:17:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1177, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"212\",\"date\":\"2023-11-11 18:25:27\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"63618.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2789\",\"suspend_id\":\"212\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2790\",\"suspend_id\":\"212\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2791\",\"suspend_id\":\"212\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2792\",\"suspend_id\":\"212\",\"product_id\":\"1066\",\"product_code\":\"139\",\"product_name\":\"Mai Tai\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2793\",\"suspend_id\":\"212\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2794\",\"suspend_id\":\"212\",\"product_id\":\"1003\",\"product_code\":\"85\",\"product_name\":\"4th Street White\",\"net_unit_price\":\"8000.0000\",\"unit_price\":\"8000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-11 17:25:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1178, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"433\",\"date\":\"2023-11-11 17:22:00\",\"reference_no\":\"SALE2023\\/11\\/0107\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"45990.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"3510.0000\",\"total_tax\":\"4319.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"50310.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-11 17:48:54\",\"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\":\"b899e19e1da447cd32837ce52c1ad5c060cc0cd8ab6612c65bfc3817de4b8a74\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 17:33:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1179, 'Purchase is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"1\",\"reference_no\":\"PO2023\\/11\\/0001\",\"date\":\"2023-11-11 18:38:00\",\"supplier_id\":\"2\",\"supplier\":\"Supplier Company Name\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"841500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"63112.5000\",\"total_tax\":\"63112.5000\",\"shipping\":\"0.0000\",\"grand_total\":\"904612.5000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"attachment\":\"0\",\"payment_term\":\"0\",\"due_date\":null,\"return_id\":null,\"surcharge\":\"0.0000\",\"return_purchase_ref\":null,\"purchase_id\":null,\"return_purchase_total\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"352\",\"purchase_id\":\"1\",\"transfer_id\":null,\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"option_id\":null,\"net_unit_cost\":\"4500.0000\",\"quantity\":\"187.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"841500.0000\",\"quantity_balance\":\"174.0000\",\"date\":\"2023-11-11\",\"status\":\"received\",\"unit_cost\":\"4500.0000\",\"real_unit_cost\":\"4500.0000\",\"quantity_received\":\"187.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"187.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4500.0000\"}]}', '2023-11-11 17:41:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1180, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"435\",\"date\":\"2023-11-11 18:07:41\",\"reference_no\":\"SALE2023\\/11\\/0109\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1987.5000\",\"total_tax\":\"1987.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"28487.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"1be10d4d67c4e191f50d74f372aba11162079808c8457e6d8b8cc98ba5db90ca\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 17:57:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1181, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"210\",\"date\":\"2023-11-11 18:42:54\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"31336.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T7\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2795\",\"suspend_id\":\"210\",\"product_id\":\"979\",\"product_code\":\"67\",\"product_name\":\"Teeling Whisky\",\"net_unit_price\":\"25500.0000\",\"unit_price\":\"25500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"25500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"25500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2796\",\"suspend_id\":\"210\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2797\",\"suspend_id\":\"210\",\"product_id\":\"1053\",\"product_code\":\"126\",\"product_name\":\"Sprite\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-11 17:58:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1182, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"440\",\"date\":\"2023-11-11 18:58:49\",\"reference_no\":\"SALE2023\\/11\\/0110\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"262.5000\",\"total_tax\":\"262.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"3762.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"6673151d18ea86e4641a5f60b0c9f6807e620c2e608e890c4bce6ee81ac2857d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 18:08:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1183, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"445\",\"date\":\"2023-11-11 19:16:35\",\"reference_no\":\"SALE2023\\/11\\/0113\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"187.5000\",\"total_tax\":\"187.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"2687.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"91212d8a106b620d9a6a9944483129069c909ee0e7b14b593ac0b6ab78203877\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 18:38:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1184, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"446\",\"date\":\"2023-11-11 19:24:08\",\"reference_no\":\"SALE2023\\/11\\/0114\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"375.0000\",\"total_tax\":\"375.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"5375.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-11 19:37: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\":\"f758f23c277c572d881e26cfe11e1174dc520684e8354cba07964de37fc1cb2f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 18:39:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1185, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"443\",\"date\":\"2023-11-11 19:12:10\",\"reference_no\":\"SALE2023\\/11\\/0111\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"675.0000\",\"total_tax\":\"675.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"9675.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-11 19:32: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\":\"e90a1ebc2a741f766836590a4a8092c1f4bdcbc88e80d89960953b186e8404f9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 19:08:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1186, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"451\",\"date\":\"2023-11-11 20:47:42\",\"reference_no\":\"SALE2023\\/11\\/0117\",\"customer_id\":\"30\",\"customer\":\"Table 10\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"225.0000\",\"total_tax\":\"225.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"3225.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"cfc839f36aeb19a200a7748ef2989a1f26d40aaf3c70354777ae5ac06a3beb86\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 19:48:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1187, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"453\",\"date\":\"2023-11-11 20:55:02\",\"reference_no\":\"SALE2023\\/11\\/0118\",\"customer_id\":\"34\",\"customer\":\"Table 14\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"300.0000\",\"total_tax\":\"300.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"4300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"fa51d7abb0bc6208fc430e932f216dd434b68d9e10387e1b5d7ff19a462b9fcf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 19:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1188, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"444\",\"date\":\"2023-11-11 19:16:15\",\"reference_no\":\"SALE2023\\/11\\/0112\",\"customer_id\":\"37\",\"customer\":\"Table 18\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1260.0000\",\"total_tax\":\"1260.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"18060.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-11 19:26:36\",\"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\":\"48115ab0724c19564987a3d5f6deb956c602ecb62be68ad9d5c4a8ea2f94a73b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 20:01:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1189, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"449\",\"date\":\"2023-11-11 20:14:45\",\"reference_no\":\"SALE2023\\/11\\/0115\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1050.0000\",\"total_tax\":\"1050.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"15050.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-11 20:28:27\",\"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\":\"f8603ce734d5910b75bc63aee02e99a069884fdf312d5659353fbd05a5f31850\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 20:17:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1190, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"450\",\"date\":\"2023-11-11 20:39:00\",\"reference_no\":\"SALE2023\\/11\\/0116\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1425.0000\",\"total_tax\":\"1425.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"20425.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-11 21:25:18\",\"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\":\"3a1e324ec18b5f6d8b3037835c57c2a1a1f15573f8c519f0355778705e99899e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-11 20:38:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1191, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"337\",\"date\":\"2023-11-06 15:59:29\",\"reference_no\":\"SALE2023\\/11\\/0067\",\"customer_id\":\"30\",\"customer\":\"Table 10\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"337.5000\",\"total_tax\":\"337.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"4837.5000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"4837.5000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"a04e64782b397b660e3dc040ce7253e0ff794f21abccf8992cf2a7f325fb1f53\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1632\",\"sale_id\":\"337\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"1633\",\"sale_id\":\"337\",\"product_id\":\"1072\",\"product_code\":\"145\",\"product_name\":\"Long Island Iced Tea\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-11 21:51:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1192, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"459\",\"date\":\"2023-11-11 22:02:54\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0339\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"487.5000\",\"total_tax\":\"487.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"698.7500\",\"grand_total\":\"7686.2500\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"7686.2500\",\"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\":\"21a1f8991640f0c1467c7c0de21716970e6b76feba3df68fc397fbabc9902e68\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2809\",\"sale_id\":\"459\",\"product_id\":\"990\",\"product_code\":\"74\",\"product_name\":\"Four Cousins Red\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6500.0000\",\"unit_price\":\"6500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"947245ecca8316c252390aa6bf4c3f0c.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-11 21:53:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1193, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"460\",\"date\":\"2023-11-12 11:33:00\",\"reference_no\":\"SALE2023\\/11\\/0119\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"35100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2632.5000\",\"total_tax\":\"2632.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"37732.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-12 11:45:02\",\"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\":\"342479b91da2370c40e42e81d2f10cb97af5f1c451859a3964b78c698770b026\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-12 10:45:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1194, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"462\",\"date\":\"2023-11-12 12:02:38\",\"reference_no\":\"SALE2023\\/11\\/0120\",\"customer_id\":\"39\",\"customer\":\"VIP 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2160.0000\",\"total_tax\":\"2160.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"30960.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-12 13:15:32\",\"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\":\"5e63dbdf18a634f5993959730a4d86fec10bb7ca0b7bfcb541f87390262b22d8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-12 12:16:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1195, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"213\",\"date\":\"2023-11-12 12:26:04\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"29917.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"vip2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2798\",\"suspend_id\":\"213\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2799\",\"suspend_id\":\"213\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2800\",\"suspend_id\":\"213\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2801\",\"suspend_id\":\"213\",\"product_id\":\"1061\",\"product_code\":\"134\",\"product_name\":\"Pina Colada\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2802\",\"suspend_id\":\"213\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2803\",\"suspend_id\":\"213\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-12 12:17:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1196, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"469\",\"date\":\"2023-11-12 16:19:00\",\"reference_no\":\"SALE2023\\/11\\/0123\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"667.5000\",\"total_tax\":\"667.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"9567.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"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\":\"66050806b7e636c476f887907086b04144a29e11547053d9fbb6091077314013\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-12 15:21:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1197, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"470\",\"date\":\"2023-11-12 16:21:00\",\"reference_no\":\"SALE2023\\/11\\/0124\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"592.5000\",\"total_tax\":\"592.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"8492.5000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"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\":\"3e6d99367bde0ee97ee434ef8a085db05ab3a257db4f21a75a81f3b3e4bc20ff\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2864\",\"sale_id\":\"470\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-12 15:21:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1198, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"468\",\"date\":\"2023-11-12 16:16:00\",\"reference_no\":\"SALE2023\\/11\\/0122\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"592.5000\",\"total_tax\":\"592.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"8492.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"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\":\"ce120c1e7f93dbdebc15e5545619c5c163bb0c9ef5007050a6f86e9f2d144be0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-12 15:22:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1199, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"471\",\"date\":\"2023-11-12 16:23:00\",\"reference_no\":\"SALE2023\\/11\\/0125\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"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\":\"4\",\"order_tax\":\"742.5000\",\"total_tax\":\"742.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"10642.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"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\":\"3cd4f0fedd428e6f9c94dd98c16dff05c9c60efdbde08ddc593ef83c46704652\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-12 15:24:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1200, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"472\",\"date\":\"2023-11-12 17:03:23\",\"reference_no\":\"SALE2023\\/11\\/0126\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"56900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4267.5000\",\"total_tax\":\"4267.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"61167.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-12 17:37:02\",\"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\":\"e1156952926525ac3a6247b56ca3906d7dc839b5c0c7e8c12dc96c1ea00d27b4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-12 16:54:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1201, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"477\",\"date\":\"2023-11-12 18:01:04\",\"reference_no\":\"SALE2023\\/11\\/0128\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"150.0000\",\"total_tax\":\"150.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"2150.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"15a9c27ed0ff34b078bde825bcbe83aeafd7748cd6682e20f46bcd7e961f498b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-12 17:06:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1202, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"474\",\"date\":\"2023-11-12 17:39:00\",\"reference_no\":\"SALE2023\\/11\\/0127\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"262.5000\",\"total_tax\":\"262.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"3762.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-12 18:04:18\",\"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\":\"6cddc8c367aefd9d559603b290a75b506afcecea14e4779fdc172b536545e6df\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-12 17:14:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1203, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"467\",\"date\":\"2023-11-12 16:15:12\",\"reference_no\":\"SALE2023\\/11\\/0121\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"225.0000\",\"total_tax\":\"225.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"3225.0000\",\"sale_status\":\"pending\",\"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\":\"7f60fb3234198a46ee3d712dfa92f0cfe7a9990abde5894515d3720071207112\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-12 18:22:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1204, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"481\",\"date\":\"2023-11-12 19:27:18\",\"reference_no\":\"SALE2023\\/11\\/0130\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20590.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"1605.0000\",\"total_tax\":\"2414.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"23005.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-12 19:43:43\",\"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\":\"1c5755d2f8eba269f0b8d737e56a54bc01776fcf1e133a45d56a58dc69344c5f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-12 19:10:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1205, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"479\",\"date\":\"2023-11-12 18:23:00\",\"reference_no\":\"SALE2023\\/11\\/0129\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"300.0000\",\"total_tax\":\"300.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"4300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-12 20:02:25\",\"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\":\"b143bea5c063a27cf6c00fe1a8f29fcc86a613c90ce1ab5123858de5123445ac\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-12 19:38:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1206, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"214\",\"date\":\"2023-11-12 18:26:09\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"20457.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Apple\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2812\",\"suspend_id\":\"214\",\"product_id\":\"1130\",\"product_code\":\"991\",\"product_name\":\"Spaghetti  with spicy\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2813\",\"suspend_id\":\"214\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2814\",\"suspend_id\":\"214\",\"product_id\":\"941\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-12 19:47:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1207, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"488\",\"date\":\"2023-11-13 12:00:46\",\"reference_no\":\"SALE2023\\/11\\/0132\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1230.0000\",\"total_tax\":\"1230.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"17630.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"f764abf74642e68a7eadafa093c3da02a312a0beeb260771f0d3ab66e5217d7f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-13 11:29:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1208, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"489\",\"date\":\"2023-11-13 12:30:08\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0355\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1087.5000\",\"total_tax\":\"1087.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1558.7500\",\"grand_total\":\"17146.2500\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"17146.2500\",\"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\":\"b60ac7548853fd5e5d5a881d1a637de2d02ae334f3a750db6145e7ae8f60eb08\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2951\",\"sale_id\":\"489\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2952\",\"sale_id\":\"489\",\"product_id\":\"1007\",\"product_code\":\"89\",\"product_name\":\"Castillo White Wine\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7000.0000\",\"unit_price\":\"7000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"a46f59397869eb72adcd23457e20cfe2.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2953\",\"sale_id\":\"489\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"2954\",\"sale_id\":\"489\",\"product_id\":\"1085\",\"product_code\":\"158\",\"product_name\":\"Thai Iced Black Coffee\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-13 11:37:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1209, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"487\",\"date\":\"2023-11-13 11:45:00\",\"reference_no\":\"SALE2023\\/11\\/0131\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2137.5000\",\"total_tax\":\"2137.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"30637.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-13 12:49:47\",\"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\":\"fe7db75466f976a2aac2b08f293dfb7a89881bfb00d432e91a028a75cb5dfcc1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-13 12:07:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1210, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"215\",\"date\":\"2023-11-13 12:34:04\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"2956.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2815\",\"suspend_id\":\"215\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2816\",\"suspend_id\":\"215\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-13 12:08:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1211, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"493\",\"date\":\"2023-11-13 13:43:29\",\"reference_no\":\"SALE2023\\/11\\/0133\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"262.5000\",\"total_tax\":\"262.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"3762.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"f8ea496a27daa4ee28925a8cc2d6c80e6d6c50a00758a98ae195d7e846cd0ad7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-13 15:06:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1212, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"495\",\"date\":\"2023-11-13 15:17:00\",\"reference_no\":\"SALE2023\\/11\\/0134\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"41700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3127.5000\",\"total_tax\":\"3127.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"44827.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-13 16:06:08\",\"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\":\"d6531e4fe9e496e2cecdc2b1047acdb759c34ebe406c3933d5dd64a2dcd1794d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-13 16:07:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1213, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"218\",\"date\":\"2023-11-13 19:34:12\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"11\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"64564.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2830\",\"suspend_id\":\"218\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2831\",\"suspend_id\":\"218\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2832\",\"suspend_id\":\"218\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2833\",\"suspend_id\":\"218\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2834\",\"suspend_id\":\"218\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2835\",\"suspend_id\":\"218\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2836\",\"suspend_id\":\"218\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2837\",\"suspend_id\":\"218\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"1618.1800\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2838\",\"suspend_id\":\"218\",\"product_id\":\"957\",\"product_code\":\"50b\",\"product_name\":\"Mixed set (small)\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-13 18:36:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1214, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"499\",\"date\":\"2023-11-13 19:03:00\",\"reference_no\":\"SALE2023\\/11\\/0137\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"52981.8200\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"1618.1800\",\"order_tax_id\":\"4\",\"order_tax\":\"4095.0000\",\"total_tax\":\"5713.1800\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"58695.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-13 19:33:06\",\"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\":\"45e6b6f9821346c09d8aafa4a78173121ef2a0ff6a99cb1124e142a906cc3b51\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-13 18:45:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1215, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"216\",\"date\":\"2023-11-13 19:27:59\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"67993.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2817\",\"suspend_id\":\"216\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2818\",\"suspend_id\":\"216\",\"product_id\":\"884\",\"product_code\":\"12\",\"product_name\":\"Baked shrimp with glass noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2819\",\"suspend_id\":\"216\",\"product_id\":\"955\",\"product_code\":\"49\",\"product_name\":\"Seafood hot pan\",\"net_unit_price\":\"10900.0000\",\"unit_price\":\"10900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2820\",\"suspend_id\":\"216\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2821\",\"suspend_id\":\"216\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2822\",\"suspend_id\":\"216\",\"product_id\":\"954\",\"product_code\":\"48\",\"product_name\":\"Beef hot pan\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2823\",\"suspend_id\":\"216\",\"product_id\":\"863\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2824\",\"suspend_id\":\"216\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-13 18:45:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1216, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"497\",\"date\":\"2023-11-13 18:29:00\",\"reference_no\":\"SALE2023\\/11\\/0135\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"57500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4312.5000\",\"total_tax\":\"4312.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"61812.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-13 19:20:42\",\"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\":\"1582f8b741f52c52047ffec512b4607425d8b04464e128f4929fa79ed56a4cc5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-13 18:58:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1217, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"498\",\"date\":\"2023-11-13 18:41:50\",\"reference_no\":\"SALE2023\\/11\\/0136\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2152.5000\",\"total_tax\":\"2152.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"30852.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-13 19:04:49\",\"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\":\"db98f116c99e69e787b0d7a205e37f3a87917fa457acdbbf19a858591ab69108\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-13 18:59:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1218, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"503\",\"date\":\"2023-11-13 20:19:38\",\"reference_no\":\"SALE2023\\/11\\/0138\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"37.5000\",\"total_tax\":\"37.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"537.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"172f95edc58452420e3dc1fded523aa70b45ba518db7cfbee0d7c0899e9cea93\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-13 19:24:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1219, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"508\",\"date\":\"2023-11-13 21:14:59\",\"reference_no\":\"SALE2023\\/11\\/0139\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2197.5000\",\"total_tax\":\"2197.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"31497.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-13 22:02:51\",\"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\":\"c2535ebb35bb195ae4e63763fc4f288d053dc1cd774c420709656f3637424c3b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-13 21:08:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1220, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"219\",\"date\":\"2023-11-13 21:51:33\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"34647.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2839\",\"suspend_id\":\"219\",\"product_id\":\"920\",\"product_code\":\"27d\",\"product_name\":\"Stir-fried with holy basil (mixed meat)\",\"net_unit_price\":\"10400.0000\",\"unit_price\":\"10400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10400.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10400.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2840\",\"suspend_id\":\"219\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2841\",\"suspend_id\":\"219\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2842\",\"suspend_id\":\"219\",\"product_id\":\"1061\",\"product_code\":\"134\",\"product_name\":\"Pina Colada\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2843\",\"suspend_id\":\"219\",\"product_id\":\"1060\",\"product_code\":\"133\",\"product_name\":\"Margarita\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-13 21:08:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1221, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"217\",\"date\":\"2023-11-13 19:31:54\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"33937.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2825\",\"suspend_id\":\"217\",\"product_id\":\"892\",\"product_code\":\"16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2826\",\"suspend_id\":\"217\",\"product_id\":\"935\",\"product_code\":\"35c\",\"product_name\":\"Spicy papaya salad (mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2827\",\"suspend_id\":\"217\",\"product_id\":\"1083\",\"product_code\":\"156\",\"product_name\":\"Bael Fruit Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2828\",\"suspend_id\":\"217\",\"product_id\":\"861\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2829\",\"suspend_id\":\"217\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-13 21:23:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1222, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"510\",\"date\":\"2023-11-13 22:23:48\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0369\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"150.0000\",\"total_tax\":\"150.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"215.0000\",\"grand_total\":\"2365.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2365.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\":\"e96a1478a8767b664ba4b3fdfaf3224760770973b38c7823c34209efcf4808b9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3127\",\"sale_id\":\"510\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-13 21:24:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1223, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"511\",\"date\":\"2023-11-13 22:55:43\",\"reference_no\":\"SALE2023\\/11\\/0140\",\"customer_id\":\"33\",\"customer\":\"Table 13\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"300.0000\",\"total_tax\":\"300.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"4300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"5e3e6105e6bd4b71dde66ad25069b28a237bb83efd561fa66c704a88e6c2e6f1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-13 22:06:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1224, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"512\",\"date\":\"2023-11-13 23:06:10\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0370\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"300.0000\",\"total_tax\":\"300.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"430.0000\",\"grand_total\":\"4730.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"4730.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\":\"689297840de1f89c575e55cd716670da1ebe516968b7eef64e539bdf87bb076e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3129\",\"sale_id\":\"512\",\"product_id\":\"1065\",\"product_code\":\"138\",\"product_name\":\"Sex on the Beach\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-13 22:07:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1225, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"513\",\"date\":\"2023-11-14 11:22:20\",\"reference_no\":\"SALE2023\\/11\\/0141\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"37600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2820.0000\",\"total_tax\":\"2820.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"40420.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"610195757a8d6c8b4d63afb82d087613128377c27f308c2916f29cd4b0700254\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-14 11:14:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1226, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"516\",\"date\":\"2023-11-14 12:06:59\",\"reference_no\":\"SALE2023\\/11\\/0143\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"35700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2677.5000\",\"total_tax\":\"2677.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"38377.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-14 12:47:38\",\"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\":\"4764b18fea05de5fb5763f360e94bfac2fe87992a23e87bec151a5ede6ffdad7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-14 12:10:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1227, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"517\",\"date\":\"2023-11-14 12:15:07\",\"reference_no\":\"SALE2023\\/11\\/0144\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1125.0000\",\"total_tax\":\"1125.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"16125.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-14 12:42:44\",\"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\":\"7c0897b8f474be3fc97d9996276120a8488b669b874e2c7c31ef8184a96b2a58\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-14 12:18:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1228, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"521\",\"date\":\"2023-11-14 13:36:32\",\"reference_no\":\"SALE2023\\/11\\/0146\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"225.0000\",\"total_tax\":\"225.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"3225.0000\",\"sale_status\":\"pending\",\"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\":\"c3f5690bbd1bd31c12276305ac5054aec377f92f2ca871e1bc90a68b5bc81995\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-14 12:46:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1229, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"519\",\"date\":\"2023-11-14 13:32:00\",\"reference_no\":\"SALE2023\\/11\\/0145\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1522.5000\",\"total_tax\":\"1522.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"21822.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-14 13:48:01\",\"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\":\"966d722cd743ca8f27c45d605732fa712f55c42de1f6aaf4d5ca1e0288637dad\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-14 12:50:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1230, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"514\",\"date\":\"2023-11-14 11:47:38\",\"reference_no\":\"SALE2023\\/11\\/0142\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"139400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"10455.0000\",\"total_tax\":\"10455.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"149855.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-14 13:03:34\",\"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\":\"a1b17d37124a8ce68e81ef29beb4056c63754a5fa358e942b657e625d0e34706\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-14 12:50:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1231, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"524\",\"date\":\"2023-11-14 14:40:00\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0376\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1012.5000\",\"total_tax\":\"1012.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"2203.7500\",\"grand_total\":\"14512.5000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-14 14:56:29\",\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"24241.2500\",\"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\":\"2af9ebd0b4b7d8965142f79a601131b2b0ff80eb78725628970160f1aaef65e0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3255\",\"sale_id\":\"524\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"13000.0000\",\"unit_price\":\"13000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"13000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"3256\",\"sale_id\":\"524\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-14 13:56:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1232, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"220\",\"date\":\"2023-11-14 18:45:22\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"53922.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2844\",\"suspend_id\":\"220\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2845\",\"suspend_id\":\"220\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2846\",\"suspend_id\":\"220\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2847\",\"suspend_id\":\"220\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2848\",\"suspend_id\":\"220\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2849\",\"suspend_id\":\"220\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-14 18:14:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1233, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"527\",\"date\":\"2023-11-14 18:40:36\",\"reference_no\":\"SALE2023\\/11\\/0148\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1080.0000\",\"total_tax\":\"1080.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"15480.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-14 19:09:40\",\"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\":\"87b6a4426d92ee6a907b00e0ea07efd9e77a6f00b0fbbbecf2d18440c799c110\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-14 18:28:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1234, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"526\",\"date\":\"2023-11-14 18:27:58\",\"reference_no\":\"SALE2023\\/11\\/0147\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"3420.0000\",\"total_tax\":\"3420.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"49020.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-14 18:46:15\",\"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\":\"f9b7e0a244039af20e0feb0534138dd8973370292fdeaed4cc9f493b87401a88\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-14 18:28:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1235, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"530\",\"date\":\"2023-11-14 20:09:00\",\"reference_no\":\"SALE2023\\/11\\/0149\",\"customer_id\":\"39\",\"customer\":\"VIP 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"33890.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2602.5000\",\"total_tax\":\"3411.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"37302.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"3\",\"updated_at\":\"2023-11-14 20:21:33\",\"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\":\"51a27049887e6c0702e2f9096dd42b035dcfab0e7a474ab90677889d707b8d45\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-14 20:18:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1236, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"531\",\"date\":\"2023-11-14 20:35:08\",\"reference_no\":\"SALE2023\\/11\\/0150\",\"customer_id\":\"18\",\"customer\":\"Table 15\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"337.5000\",\"total_tax\":\"337.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"4837.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"22f6cf811f0a5d6b31c7752863dc8f8f0bd79b42c06ca5a790fd7b91548a8696\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-14 20:20:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1237, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"532\",\"date\":\"2023-11-14 21:07:31\",\"reference_no\":\"SALE2023\\/11\\/0151\",\"customer_id\":\"18\",\"customer\":\"Table 15\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"187.5000\",\"total_tax\":\"187.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"2687.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"3d3390d5eae738f299d1f9342d8cbfe81c4eb01fb6b72dfd74559f36e888c072\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-14 20:20:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1238, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"221\",\"date\":\"2023-11-14 20:12:41\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"8277.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"vip1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2853\",\"suspend_id\":\"221\",\"product_id\":\"1057\",\"product_code\":\"130\",\"product_name\":\"Redbull\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2854\",\"suspend_id\":\"221\",\"product_id\":\"1042\",\"product_code\":\"115\",\"product_name\":\"Origin Bitters (75)\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2855\",\"suspend_id\":\"221\",\"product_id\":\"1061\",\"product_code\":\"134\",\"product_name\":\"Pina Colada\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-15 12:51:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1239, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"222\",\"date\":\"2023-11-15 13:36:14\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"56405.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2856\",\"suspend_id\":\"222\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"18000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2857\",\"suspend_id\":\"222\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2858\",\"suspend_id\":\"222\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2859\",\"suspend_id\":\"222\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2860\",\"suspend_id\":\"222\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2861\",\"suspend_id\":\"222\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-15 12:51:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1240, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"539\",\"date\":\"2023-11-15 13:51:11\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0384\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"525.0000\",\"total_tax\":\"525.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"752.5000\",\"grand_total\":\"8277.5000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"8277.5000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"47bd45d269d9b0cbfeada4bdb094558d5739d78d5a16dd8f2565d9796d509d37\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3376\",\"sale_id\":\"539\",\"product_id\":\"1057\",\"product_code\":\"130\",\"product_name\":\"Redbull\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"973056ddb88206c87d69360fff4e99f7.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"3377\",\"sale_id\":\"539\",\"product_id\":\"1042\",\"product_code\":\"115\",\"product_name\":\"Origin Bitters (75)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"3b883b2d5e375e52f1ebb8a684b529c4.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"3378\",\"sale_id\":\"539\",\"product_id\":\"1061\",\"product_code\":\"134\",\"product_name\":\"Pina Colada\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-15 12:52:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1241, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"537\",\"date\":\"2023-11-15 11:49:02\",\"reference_no\":\"SALE2023\\/11\\/0152\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"52200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3915.0000\",\"total_tax\":\"3915.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"56115.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-15 13:50:36\",\"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\":\"922b1b44bc13ba867d2924c5b25497458c05a7989bb3ccaae3f992a72546f079\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-15 12:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1242, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"541\",\"date\":\"2023-11-15 14:01:34\",\"reference_no\":\"SALE2023\\/11\\/0154\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"2025.0000\",\"total_tax\":\"2025.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"29025.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"82711c6a4ddf23a374176503b4df5593bd4b68df957ab6085ef5216c1dde45a0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-15 13:05:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1243, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"538\",\"date\":\"2023-11-15 12:42:07\",\"reference_no\":\"SALE2023\\/11\\/0153\",\"customer_id\":\"30\",\"customer\":\"Table 10\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"46190.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"3525.0000\",\"total_tax\":\"4334.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"50525.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-15 13:47:09\",\"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\":\"cba5efb6650889423c468fb0aafd9534fd0bca5365b145f6388fa6b2df1550c4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-15 13:06:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1244, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"223\",\"date\":\"2023-11-15 13:54:17\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"54395.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2868\",\"suspend_id\":\"223\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2869\",\"suspend_id\":\"223\",\"product_id\":\"941\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2870\",\"suspend_id\":\"223\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2871\",\"suspend_id\":\"223\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2872\",\"suspend_id\":\"223\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2873\",\"suspend_id\":\"223\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2874\",\"suspend_id\":\"223\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2875\",\"suspend_id\":\"223\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-15 13:08:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1245, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"545\",\"date\":\"2023-11-15 14:20:45\",\"reference_no\":\"SALE2023\\/11\\/0155\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"337.5000\",\"total_tax\":\"337.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"4837.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"db6345f20342fee77f3fde95e246894404fb004e6926352902f953a283920796\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-15 13:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1246, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"224\",\"date\":\"2023-11-15 14:42:53\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"5321.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2876\",\"suspend_id\":\"224\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-15 13:49:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1247, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"225\",\"date\":\"2023-11-15 16:05:29\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"12\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"72723.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2903\",\"suspend_id\":\"225\",\"product_id\":\"994\",\"product_code\":\"76\",\"product_name\":\"Nederburg\",\"net_unit_price\":\"16200.0000\",\"unit_price\":\"16200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"16200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2904\",\"suspend_id\":\"225\",\"product_id\":\"1057\",\"product_code\":\"130\",\"product_name\":\"Redbull\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2905\",\"suspend_id\":\"225\",\"product_id\":\"1036\",\"product_code\":\"109\",\"product_name\":\"Guiness Stout (Big)\",\"net_unit_price\":\"2700.0000\",\"unit_price\":\"2700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2700.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2906\",\"suspend_id\":\"225\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2907\",\"suspend_id\":\"225\",\"product_id\":\"954\",\"product_code\":\"48\",\"product_name\":\"Beef hot pan\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2908\",\"suspend_id\":\"225\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2909\",\"suspend_id\":\"225\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2910\",\"suspend_id\":\"225\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2911\",\"suspend_id\":\"225\",\"product_id\":\"1092\",\"product_code\":\"165\",\"product_name\":\"Strawberry Juice\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-15 15:13:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1248, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"547\",\"date\":\"2023-11-15 15:00:26\",\"reference_no\":\"SALE2023\\/11\\/0156\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"62390.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"4740.0000\",\"total_tax\":\"5549.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"67940.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-15 16:12:11\",\"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\":\"b91592d08134dad66fb5dc40096c7d747832231369814d75923ae38b83b81e2d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-15 16:11:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1249, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"551\",\"date\":\"2023-11-15 17:07:24\",\"reference_no\":\"SALE2023\\/11\\/0157\",\"customer_id\":\"31\",\"customer\":\"Table 11\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"62500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4687.5000\",\"total_tax\":\"4687.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"67187.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-15 18:17:45\",\"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\":\"7561c2f6a7ff1e04c87978a4ca528c866c4d0be48acc2e17ab2ac8724ff51342\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-15 17:46:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1250, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"553\",\"date\":\"2023-11-15 17:56:32\",\"reference_no\":\"SALE2023\\/11\\/0159\",\"customer_id\":\"33\",\"customer\":\"Table 13\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"51700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3877.5000\",\"total_tax\":\"3877.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"55577.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-15 18:39:06\",\"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\":\"8fcbd4b70f82b0a981cb5786145945e5c1f4396dc3d6c371536b246cab2a1a24\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-15 17:52:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1251, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"552\",\"date\":\"2023-11-15 17:54:19\",\"reference_no\":\"SALE2023\\/11\\/0158\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2347.5000\",\"total_tax\":\"2347.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"33647.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-15 18:51:20\",\"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\":\"5a09c25e05763db047824b9adb3199138739beb2b1593f050654ed6caf8aaeec\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-15 17:55:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1252, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"226\",\"date\":\"2023-11-15 18:56:24\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"37012.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2912\",\"suspend_id\":\"226\",\"product_id\":\"1082\",\"product_code\":\"155\",\"product_name\":\"Roselle Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2913\",\"suspend_id\":\"226\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2914\",\"suspend_id\":\"226\",\"product_id\":\"957\",\"product_code\":\"50b\",\"product_name\":\"Mixed set (small)\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2915\",\"suspend_id\":\"226\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2916\",\"suspend_id\":\"226\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-15 18:14:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1253, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"557\",\"date\":\"2023-11-15 19:17:18\",\"reference_no\":\"SALE2023\\/11\\/0160\",\"customer_id\":\"32\",\"customer\":\"Table 12\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2152.5000\",\"total_tax\":\"2152.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"30852.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-15 19:48:04\",\"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\":\"91e697ee10138699e0798e39b28900612d7855de96e1db02f107b24c05ab916b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-15 19:12:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1254, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"560\",\"date\":\"2023-11-15 22:03:41\",\"reference_no\":\"SALE2023\\/11\\/0161\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"592.5000\",\"total_tax\":\"592.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"8492.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"9547a363c074301a5b1955b57b4c224bc253e689f231f8249791e5671d34521c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-15 21:48:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1255, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":false,\"items\":null}', '2023-11-15 21:48:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1256, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"561\",\"date\":\"2023-11-15 22:49:01\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0398\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"592.5000\",\"total_tax\":\"592.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"849.2500\",\"grand_total\":\"9341.7500\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"9341.7500\",\"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\":\"d481e997b55e4f31e92942613dbe9ed89d9f43d2a1fe736bf1f58ba3573a0dc9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3526\",\"sale_id\":\"561\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-15 21:50:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1257, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"564\",\"date\":\"2023-11-16 16:50:48\",\"reference_no\":\"SALE2023\\/11\\/0162\",\"customer_id\":\"18\",\"customer\":\"Table 15\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"150.0000\",\"total_tax\":\"150.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"2150.0000\",\"sale_status\":\"pending\",\"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\":\"dc7848669e69f68dac5675afa43f68ca9c0ec299e2868734067ce881bdc3a425\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-16 18:17:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1258, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"567\",\"date\":\"2023-11-16 19:32:03\",\"reference_no\":\"SALE2023\\/11\\/0164\",\"customer_id\":\"39\",\"customer\":\"VIP 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2190.0000\",\"total_tax\":\"2190.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"31390.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-16 19:54:54\",\"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\":\"246da0587b79aeee45d96a2d089f2a0ad5ff5b75bc6a0de0573d335e7fea8979\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-16 19:05:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1259, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"566\",\"date\":\"2023-11-16 19:24:22\",\"reference_no\":\"SALE2023\\/11\\/0163\",\"customer_id\":\"32\",\"customer\":\"Table 12\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29290.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2257.5000\",\"total_tax\":\"3066.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"32357.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"6f7c9a8e3b73ede294892ba6340b15e75edb314f572e60e5f1cfce95bcd282f0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-16 19:18:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1260, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"570\",\"date\":\"2023-11-16 20:46:53\",\"reference_no\":\"SALE2023\\/11\\/0165\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"375.0000\",\"total_tax\":\"375.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"5375.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"e88bdf0e5f731465ef2a6af321be46f5f33b9617ecab7194e00da51bb622d94f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-16 20:22:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1261, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"574\",\"date\":\"2023-11-17 13:22:11\",\"reference_no\":\"SALE2023\\/11\\/0166\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"33700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2527.5000\",\"total_tax\":\"2527.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"36227.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-17 13:46:40\",\"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\":\"f680f4aaf7fda81ca654933adf7843cacdfdd10885738badde3c162806c6bab4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-17 13:06:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1262, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"575\",\"date\":\"2023-11-17 13:50:30\",\"reference_no\":\"SALE2023\\/11\\/0167\",\"customer_id\":\"18\",\"customer\":\"Table 15\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"892.5000\",\"total_tax\":\"892.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"12792.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"6b085be019ce2ac72ea4a3802fcd0ee8da4ea21a309bebe34fea83f7aec2e8b8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-17 16:10:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1263, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"577\",\"date\":\"2023-11-17 17:05:26\",\"reference_no\":\"SALE2023\\/11\\/0168\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2377.5000\",\"total_tax\":\"2377.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"34077.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-17 17:19:29\",\"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\":\"d7f70c4d76cb38f9f45b6a0685de7885579b057c130480598db61fa21246e83e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-17 17:06:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1264, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"228\",\"date\":\"2023-11-17 18:59:16\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"23\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"100276.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2991\",\"suspend_id\":\"228\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2992\",\"suspend_id\":\"228\",\"product_id\":\"1072\",\"product_code\":\"145\",\"product_name\":\"Long Island Iced Tea\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2993\",\"suspend_id\":\"228\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"2427.2700\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2994\",\"suspend_id\":\"228\",\"product_id\":\"1093\",\"product_code\":\"166\",\"product_name\":\"Lemon Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2995\",\"suspend_id\":\"228\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2996\",\"suspend_id\":\"228\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2997\",\"suspend_id\":\"228\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2998\",\"suspend_id\":\"228\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"2999\",\"suspend_id\":\"228\",\"product_id\":\"1031\",\"product_code\":\"104b\",\"product_name\":\"Sierra Tequila (shot)\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3000\",\"suspend_id\":\"228\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"5.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3001\",\"suspend_id\":\"228\",\"product_id\":\"1139\",\"product_code\":\"893\",\"product_name\":\"chicken\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3002\",\"suspend_id\":\"228\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-17 18:02:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1265, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"227\",\"date\":\"2023-11-17 18:59:37\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"11\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"60307.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3003\",\"suspend_id\":\"227\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3004\",\"suspend_id\":\"227\",\"product_id\":\"939\",\"product_code\":\"37c\",\"product_name\":\"Spicy chopped meat salad (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3005\",\"suspend_id\":\"227\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3006\",\"suspend_id\":\"227\",\"product_id\":\"914\",\"product_code\":\"24d\",\"product_name\":\"Tom Yum (seafood\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3007\",\"suspend_id\":\"227\",\"product_id\":\"882\",\"product_code\":\"11c\",\"product_name\":\"Noodles in gravy sauce (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3008\",\"suspend_id\":\"227\",\"product_id\":\"1087\",\"product_code\":\"160\",\"product_name\":\"Milk Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3009\",\"suspend_id\":\"227\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3010\",\"suspend_id\":\"227\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-17 18:05:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1266, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"583\",\"date\":\"2023-11-17 20:34:29\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0411\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"150.0000\",\"total_tax\":\"150.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"215.0000\",\"grand_total\":\"2365.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2365.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\":\"cb4130638def84fa3aa7b7bf796c5381399fb94049bea5311b6b08886f0d4d4a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3711\",\"sale_id\":\"583\",\"product_id\":\"1057\",\"product_code\":\"130\",\"product_name\":\"Redbull\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"973056ddb88206c87d69360fff4e99f7.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-17 19:35:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1267, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"578\",\"date\":\"2023-11-17 17:35:41\",\"reference_no\":\"SALE2023\\/11\\/0169\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"80872.7300\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"2427.2700\",\"order_tax_id\":\"4\",\"order_tax\":\"6247.5000\",\"total_tax\":\"8674.7700\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"89547.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-17 18:53:24\",\"total_items\":\"22\",\"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\":\"a20fa1d578e6dc69893c01b46bc3572df824ed2276acf4b273f4577c40940a07\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-17 19:35:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1268, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":false,\"items\":null}', '2023-11-17 19:35:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1269, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"582\",\"date\":\"2023-11-17 20:05:05\",\"reference_no\":\"SALE2023\\/11\\/0170\",\"customer_id\":\"33\",\"customer\":\"Table 13\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"18300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1372.5000\",\"total_tax\":\"1372.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"19672.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"2b94a3212088252ca8210a00bb9c753c478033655460eb3f74136b27816837f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-17 19:59:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1270, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"586\",\"date\":\"2023-11-17 20:56:19\",\"reference_no\":\"SALE2023\\/11\\/0171\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1087.5000\",\"total_tax\":\"1087.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"15587.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-17 21:29:08\",\"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\":\"746ffe63d304166088dc750bf86d21429d71e5766b1d513e4db57c118f6c8784\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-17 20:46:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1271, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"590\",\"date\":\"2023-11-17 21:57:19\",\"reference_no\":\"SALE2023\\/11\\/0173\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1635.0000\",\"total_tax\":\"1635.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"23435.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-17 22:03:53\",\"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\":\"77cab6dd2f280f53abf07c4df2d617109e956c9d608eb215508924533544b4c5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-17 21:22:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1272, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"589\",\"date\":\"2023-11-17 21:48:17\",\"reference_no\":\"SALE2023\\/11\\/0172\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1305.0000\",\"total_tax\":\"1305.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"18705.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"4d8f8189065c6ce2c7b09ee304d053ce6bc309607cd1633eb9f8df954e1de19c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-17 21:27:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1273, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"593\",\"date\":\"2023-11-17 22:47:09\",\"reference_no\":\"SALE2023\\/11\\/0174\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"780.0000\",\"total_tax\":\"780.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"11180.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"2ca3832dc021a0e3a41c94124ab4b10bebe441b7f42d7978dee24f6d66774edf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-17 21:57:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1274, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"594\",\"date\":\"2023-11-17 22:57:48\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0418\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"780.0000\",\"total_tax\":\"780.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1118.0000\",\"grand_total\":\"12298.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\":\"12298.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\":\"3a3f8fccfcdf5145854bd5356b7fa74148ab7bcdedb8b7fea2f42a727bdd2751\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3748\",\"sale_id\":\"594\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"3749\",\"sale_id\":\"594\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-17 21:58:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1275, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"595\",\"date\":\"2023-11-18 12:17:44\",\"reference_no\":\"SALE2023\\/11\\/0175\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2002.5000\",\"total_tax\":\"2002.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"28702.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-18 13:40:07\",\"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\":\"bbce6517ffec931955daf63e23fda5b5ecf927d6880320d1632f1c1d7ede17dc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 13:11:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1276, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"596\",\"date\":\"2023-11-18 12:37:09\",\"reference_no\":\"SALE2023\\/11\\/0176\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1935.0000\",\"total_tax\":\"1935.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"27735.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-18 13:58:06\",\"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\":\"b988bf18d936c02753c1f88ec0cc4f9d7619a8568d1cc7627a5cc29df5bc9672\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 13:20:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1277, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"597\",\"date\":\"2023-11-18 13:26:32\",\"reference_no\":\"SALE2023\\/11\\/0177\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"23800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1785.0000\",\"total_tax\":\"1785.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"25585.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-18 14:05:41\",\"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\":\"80fe62f1e07328076183b9b8188ff4d95a14d091d1a2b2a1f780f69b581e0903\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 13:20:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1278, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"601\",\"date\":\"2023-11-18 16:07:24\",\"reference_no\":\"SALE2023\\/11\\/0178\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"532.5000\",\"total_tax\":\"532.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"7632.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-18 16:21:46\",\"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\":\"e3589a68690c360b2338dc5c5faa38ba1af4675aea8de28135cc895709293304\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 15:52:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1279, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"603\",\"date\":\"2023-11-18 17:32:03\",\"reference_no\":\"SALE2023\\/11\\/0179\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1260.0000\",\"total_tax\":\"1260.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"18060.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-18 17:34:07\",\"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\":\"5b18d2c15f621ff0d8d1b7997a652df3097bb8b759ea351c8c5e11de66bedf6e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 16:37:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1280, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"604\",\"date\":\"2023-11-18 17:38:42\",\"reference_no\":\"SALE2023\\/11\\/0180\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"652.5000\",\"total_tax\":\"652.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"9352.5000\",\"sale_status\":\"pending\",\"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\":\"4e3cf4552c2ff23d181ed94d905de6be86008b0d95c2b2781ce159a787d7fe33\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 17:07:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1281, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"230\",\"date\":\"2023-11-18 19:10:26\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"52148.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3019\",\"suspend_id\":\"230\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3020\",\"suspend_id\":\"230\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3021\",\"suspend_id\":\"230\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3022\",\"suspend_id\":\"230\",\"product_id\":\"1079\",\"product_code\":\"152\",\"product_name\":\"Chivita Active\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3023\",\"suspend_id\":\"230\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3024\",\"suspend_id\":\"230\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3025\",\"suspend_id\":\"230\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3026\",\"suspend_id\":\"230\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-18 18:56:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1282, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"229\",\"date\":\"2023-11-18 18:47:27\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"42790.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3014\",\"suspend_id\":\"229\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3015\",\"suspend_id\":\"229\",\"product_id\":\"909\",\"product_code\":\"22\",\"product_name\":\"Sour soup with fish\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3016\",\"suspend_id\":\"229\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3017\",\"suspend_id\":\"229\",\"product_id\":\"959\",\"product_code\":\"52\",\"product_name\":\"Sago pearls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3018\",\"suspend_id\":\"229\",\"product_id\":\"915\",\"product_code\":\"25\",\"product_name\":\"Boiled chicken in fish sauce\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-18 19:01:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1283, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"607\",\"date\":\"2023-11-18 18:57:55\",\"reference_no\":\"SALE2023\\/11\\/0181\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"44600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3345.0000\",\"total_tax\":\"3345.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"47945.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-18 19:28:20\",\"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\":\"2231190f1318f4cc2c4c7f18341190903fb4489400c8d368da607fd38dd2cd4f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 19:13:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1284, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"233\",\"date\":\"2023-11-18 20:32:49\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"3386.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T7\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3045\",\"suspend_id\":\"233\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3046\",\"suspend_id\":\"233\",\"product_id\":\"1064\",\"product_code\":\"137\",\"product_name\":\"Mojito\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-18 19:39:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1285, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"232\",\"date\":\"2023-11-18 20:32:27\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"38038.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3040\",\"suspend_id\":\"232\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3041\",\"suspend_id\":\"232\",\"product_id\":\"908\",\"product_code\":\"21c\",\"product_name\":\"Massaman Curry (lamb)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3042\",\"suspend_id\":\"232\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3043\",\"suspend_id\":\"232\",\"product_id\":\"990\",\"product_code\":\"74\",\"product_name\":\"Four Cousins Red\",\"net_unit_price\":\"6500.0000\",\"unit_price\":\"6500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3044\",\"suspend_id\":\"232\",\"product_id\":\"950\",\"product_code\":\"44\",\"product_name\":\"Deep fried chicken rolls (8 pcs)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-18 20:03:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1286, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"612\",\"date\":\"2023-11-18 20:24:49\",\"reference_no\":\"SALE2023\\/11\\/0184\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"225.0000\",\"total_tax\":\"225.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"3225.0000\",\"sale_status\":\"pending\",\"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\":\"db1adf2289bc9b0c6f1be905dc29b9b9f309448d5d6e007995f797b2ec9cf14f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 20:19:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1287, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"611\",\"date\":\"2023-11-18 20:09:16\",\"reference_no\":\"SALE2023\\/11\\/0183\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"33700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2527.5000\",\"total_tax\":\"2527.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"36227.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-18 20:20:17\",\"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\":\"4e7ecbc7000ef13620b87829b0ca1a383f1f1b3f3e7b30e7c93c78f1cc70f74c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 20:19:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1288, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"614\",\"date\":\"2023-11-18 20:57:10\",\"reference_no\":\"SALE2023\\/11\\/0185\",\"customer_id\":\"18\",\"customer\":\"Table 15\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"75.0000\",\"total_tax\":\"75.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"1075.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-18 21:21:48\",\"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\":\"4df34f0b751d1aab772748e9bfaa900ad1080892184ac4b42392499b68e82195\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 20:22:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1289, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"616\",\"date\":\"2023-11-18 21:27:50\",\"reference_no\":\"SALE2023\\/11\\/0186\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"75.0000\",\"total_tax\":\"75.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"1075.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"7c6b2fa330ea4720df3424fe38349432bf506edc4d4170db155a7804b543cf5d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 20:28:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1290, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"608\",\"date\":\"2023-11-18 19:15:20\",\"reference_no\":\"SALE2023\\/11\\/0182\",\"customer_id\":\"33\",\"customer\":\"Table 13\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"39600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2970.0000\",\"total_tax\":\"2970.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"42570.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-18 20:29:54\",\"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\":\"daefaed4a960c2009e7e376f81a1bcb9a6dde559775bfcc85c75a8b378640f10\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 20:32:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1291, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"231\",\"date\":\"2023-11-18 20:31:42\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"44698.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T13\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3033\",\"suspend_id\":\"231\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3034\",\"suspend_id\":\"231\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3035\",\"suspend_id\":\"231\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3036\",\"suspend_id\":\"231\",\"product_id\":\"1034\",\"product_code\":\"107\",\"product_name\":\"Star Raddler\",\"net_unit_price\":\"1900.0000\",\"unit_price\":\"1900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3037\",\"suspend_id\":\"231\",\"product_id\":\"951\",\"product_code\":\"45\",\"product_name\":\"Red grilled chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3038\",\"suspend_id\":\"231\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3039\",\"suspend_id\":\"231\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-18 20:32:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1292, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"234\",\"date\":\"2023-11-18 22:35:09\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"31020.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T7\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3047\",\"suspend_id\":\"234\",\"product_id\":\"1092\",\"product_code\":\"165\",\"product_name\":\"Strawberry Juice\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3048\",\"suspend_id\":\"234\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3049\",\"suspend_id\":\"234\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3050\",\"suspend_id\":\"234\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"5900.0000\",\"unit_price\":\"5900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-18 21:37:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1293, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"619\",\"date\":\"2023-11-18 21:43:00\",\"reference_no\":\"SALE2023\\/11\\/0187\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2340.0000\",\"total_tax\":\"2340.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"33540.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-18 21:46:40\",\"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\":\"72e3508c5aaa650c2d142d22dd31866ac562f5d2720c8d573822db5875365097\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-18 21:45:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1294, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"235\",\"date\":\"2023-11-19 14:50:47\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"43989.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3051\",\"suspend_id\":\"235\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3052\",\"suspend_id\":\"235\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3053\",\"suspend_id\":\"235\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3054\",\"suspend_id\":\"235\",\"product_id\":\"857\",\"product_code\":\"2\",\"product_name\":\"Lamb Biryani\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3055\",\"suspend_id\":\"235\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3056\",\"suspend_id\":\"235\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3057\",\"suspend_id\":\"235\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-19 14:06:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1295, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"622\",\"date\":\"2023-11-19 13:48:41\",\"reference_no\":\"SALE2023\\/11\\/0188\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"36390.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2790.0000\",\"total_tax\":\"3599.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"39990.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-19 14:13:50\",\"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\":\"e1167a9553cb42d6a660442af2c3dd3c2ff6ad81b615bac6bcdefaaee288fdef\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-19 14:20:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1296, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"236\",\"date\":\"2023-11-19 15:59:18\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"92708.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3082\",\"suspend_id\":\"236\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3083\",\"suspend_id\":\"236\",\"product_id\":\"892\",\"product_code\":\"16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3084\",\"suspend_id\":\"236\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3085\",\"suspend_id\":\"236\",\"product_id\":\"861\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3086\",\"suspend_id\":\"236\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3087\",\"suspend_id\":\"236\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3088\",\"suspend_id\":\"236\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3089\",\"suspend_id\":\"236\",\"product_id\":\"943\",\"product_code\":\"38c\",\"product_name\":\"Fried spring rolls (stuffed with vegetables)\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-19 15:05:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1297, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"237\",\"date\":\"2023-11-19 15:59:43\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"74615.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3090\",\"suspend_id\":\"237\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3091\",\"suspend_id\":\"237\",\"product_id\":\"869\",\"product_code\":\"8c\",\"product_name\":\"Pad Thai (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3092\",\"suspend_id\":\"237\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3093\",\"suspend_id\":\"237\",\"product_id\":\"857\",\"product_code\":\"2\",\"product_name\":\"Lamb Biryani\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3094\",\"suspend_id\":\"237\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3095\",\"suspend_id\":\"237\",\"product_id\":\"1091\",\"product_code\":\"164\",\"product_name\":\"Water Melon Juice\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3096\",\"suspend_id\":\"237\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3097\",\"suspend_id\":\"237\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-19 15:08:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1298, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"625\",\"date\":\"2023-11-19 15:26:42\",\"reference_no\":\"SALE2023\\/11\\/0190\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"66100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4957.5000\",\"total_tax\":\"4957.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"71057.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-19 15:56:33\",\"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\":\"4b4f39f42a88b0ca01a026128e2df934da9d56abe725427e53a1f49f98059ef1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-19 16:27:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1299, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"623\",\"date\":\"2023-11-19 14:40:49\",\"reference_no\":\"SALE2023\\/11\\/0189\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"74590.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"5655.0000\",\"total_tax\":\"6464.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"81055.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-19 15:51:12\",\"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\":\"b323f8b09cd78d2de6a209c9b5e375759cb73fcc808d66b26c3bac1e22f1dd3b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-19 16:27:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1300, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"631\",\"date\":\"2023-11-19 18:04:53\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0437\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1852.5000\",\"total_tax\":\"1852.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"2655.2500\",\"grand_total\":\"29207.7500\",\"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\":\"1\",\"paid\":\"29207.7500\",\"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\":\"7cacdea23824bcd61f28dca2e0f1c6c2a69121dd8eb7d0b5eeff52811d9de851\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4083\",\"sale_id\":\"631\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4084\",\"sale_id\":\"631\",\"product_id\":\"937\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-19 17:06:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1301, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"634\",\"date\":\"2023-11-19 18:29:33\",\"reference_no\":\"SALE2023\\/11\\/0194\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"352.5000\",\"total_tax\":\"352.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"5052.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-19 18:30:18\",\"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\":\"84791d299de5898703495ab6f8cb9d5e50a6bc7dd619807aa8cb99e014e639f4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-19 17:49:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1302, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"239\",\"date\":\"2023-11-19 18:50:32\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"14\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"114347.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3114\",\"suspend_id\":\"239\",\"product_id\":\"864\",\"product_code\":\"5\",\"product_name\":\"Tom yum fried rice\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3115\",\"suspend_id\":\"239\",\"product_id\":\"911\",\"product_code\":\"24\",\"product_name\":\"Tom Yum (shrimp\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3116\",\"suspend_id\":\"239\",\"product_id\":\"913\",\"product_code\":\"24c\",\"product_name\":\"Tom Yum (seafood\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3117\",\"suspend_id\":\"239\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3118\",\"suspend_id\":\"239\",\"product_id\":\"892\",\"product_code\":\"16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3119\",\"suspend_id\":\"239\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3120\",\"suspend_id\":\"239\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3121\",\"suspend_id\":\"239\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3122\",\"suspend_id\":\"239\",\"product_id\":\"1075\",\"product_code\":\"148\",\"product_name\":\"Chocolate Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3123\",\"suspend_id\":\"239\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3124\",\"suspend_id\":\"239\",\"product_id\":\"1093\",\"product_code\":\"166\",\"product_name\":\"Lemon Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3125\",\"suspend_id\":\"239\",\"product_id\":\"1091\",\"product_code\":\"164\",\"product_name\":\"Water Melon Juice\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-19 18:12:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1303, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"629\",\"date\":\"2023-11-19 17:48:15\",\"reference_no\":\"SALE2023\\/11\\/0192\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"98390.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"7440.0000\",\"total_tax\":\"8249.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"106640.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-19 19:09:59\",\"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\":\"1435fac6c6aabaeee1af4592d0bc283600d91f8be39f32df2f0ce5b808814f93\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-19 18:15:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1304, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"240\",\"date\":\"2023-11-19 19:14:12\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"41387.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3126\",\"suspend_id\":\"240\",\"product_id\":\"864\",\"product_code\":\"5\",\"product_name\":\"Tom yum fried rice\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3127\",\"suspend_id\":\"240\",\"product_id\":\"911\",\"product_code\":\"24\",\"product_name\":\"Tom Yum (shrimp\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3128\",\"suspend_id\":\"240\",\"product_id\":\"931\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3129\",\"suspend_id\":\"240\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3130\",\"suspend_id\":\"240\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-19 18:23:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1305, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"636\",\"date\":\"2023-11-19 18:52:21\",\"reference_no\":\"SALE2023\\/11\\/0195\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"35000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2625.0000\",\"total_tax\":\"2625.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"37625.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"b1a89c1bbcf32afac94ee923443193fdc90d9a37adc3d0992b14b9809b3ab5d6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-19 18:30:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1306, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"628\",\"date\":\"2023-11-19 17:44:06\",\"reference_no\":\"SALE2023\\/11\\/0191\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1897.5000\",\"total_tax\":\"1897.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"27197.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-19 17:47:07\",\"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\":\"b6e37809f028d287f281c3e750f4d1177004b1be17a1bf2dce9e5b376423529a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-19 19:03:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1307, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"238\",\"date\":\"2023-11-19 18:48:58\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"14899.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"VIP1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3111\",\"suspend_id\":\"238\",\"product_id\":\"1036\",\"product_code\":\"109\",\"product_name\":\"Guiness Stout (Big)\",\"net_unit_price\":\"2700.0000\",\"unit_price\":\"2700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2700.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3112\",\"suspend_id\":\"238\",\"product_id\":\"1040\",\"product_code\":\"113\",\"product_name\":\"Smirnoff Ice (Can)\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3113\",\"suspend_id\":\"238\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-19 19:31:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1308, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"633\",\"date\":\"2023-11-19 18:16:43\",\"reference_no\":\"SALE2023\\/11\\/0193\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"975.0000\",\"total_tax\":\"975.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"13975.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-19 18:55:21\",\"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\":\"f594d677865006b3081f6b1be72f5d1ff38f3596bbe4c30a212a8b704e72bc24\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-19 19:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1309, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"642\",\"date\":\"2023-11-19 20:31:45\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0443\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1530.0000\",\"grand_total\":\"16830.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"1\",\"paid\":\"16830.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\":\"365eda47ad5de69177c8f4555d114954fc721b699d938fdc372a262b88eeb2f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4184\",\"sale_id\":\"642\",\"product_id\":\"1036\",\"product_code\":\"109\",\"product_name\":\"Guiness Stout (Big)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2700.0000\",\"unit_price\":\"2700.0000\",\"quantity\":\"2.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\":\"\",\"real_unit_price\":\"2700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"c9970259afee44fbde8dd27570f34b03.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4185\",\"sale_id\":\"642\",\"product_id\":\"1040\",\"product_code\":\"113\",\"product_name\":\"Smirnoff Ice (Can)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"8f33700727a42573d8fa0be1e93c04b3.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4186\",\"sale_id\":\"642\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-19 19:37:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1310, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"640\",\"date\":\"2023-11-19 19:44:59\",\"reference_no\":\"SALE2023\\/11\\/0197\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1635.0000\",\"total_tax\":\"1635.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"23435.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"758eb5d53fc248c6a72c9e419aa4c5817aa0afe46e64112b49a9e4840b6060dd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-19 19:38:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1311, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"638\",\"date\":\"2023-11-19 19:23:00\",\"reference_no\":\"SALE2023\\/11\\/0196\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"37000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2775.0000\",\"total_tax\":\"2775.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"39775.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-19 20:47:15\",\"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\":\"40efc2b32d405ed3419347f97190de7eb05eb0be9abeb6a9b4fb867073ad77cc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-19 19:47:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1312, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"243\",\"date\":\"2023-11-20 15:13:22\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"21166.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T5\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3141\",\"suspend_id\":\"243\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3142\",\"suspend_id\":\"243\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3143\",\"suspend_id\":\"243\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3144\",\"suspend_id\":\"243\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3145\",\"suspend_id\":\"243\",\"product_id\":\"1058\",\"product_code\":\"131\",\"product_name\":\"Bullet\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-20 15:21:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1313, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"242\",\"date\":\"2023-11-19 20:44:26\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"40796.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"f8\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3135\",\"suspend_id\":\"242\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3136\",\"suspend_id\":\"242\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3137\",\"suspend_id\":\"242\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3138\",\"suspend_id\":\"242\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3139\",\"suspend_id\":\"242\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3140\",\"suspend_id\":\"242\",\"product_id\":\"1036\",\"product_code\":\"109\",\"product_name\":\"Guiness Stout (Big)\",\"net_unit_price\":\"2700.0000\",\"unit_price\":\"2700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2700.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-20 15:22:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1314, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"241\",\"date\":\"2023-11-19 20:40:34\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"17146.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3133\",\"suspend_id\":\"241\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3134\",\"suspend_id\":\"241\",\"product_id\":\"957\",\"product_code\":\"50b\",\"product_name\":\"Mixed set (small)\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-20 15:23:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1315, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"651\",\"date\":\"2023-11-20 16:23:01\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0449\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1087.5000\",\"total_tax\":\"1087.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1558.7500\",\"grand_total\":\"17146.2500\",\"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\":\"17146.2500\",\"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\":\"9c1e37260f47b7a7c78ede1d5c178fca200b6ae81284cff4e51022b1f8d63cb5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4260\",\"sale_id\":\"651\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"b2ec795bb80e5b60c2a37841990dcf5f.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4261\",\"sale_id\":\"651\",\"product_id\":\"957\",\"product_code\":\"50b\",\"product_name\":\"Mixed set (small)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-20 15:23:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1316, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"650\",\"date\":\"2023-11-20 16:22:36\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0448\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1575.0000\",\"total_tax\":\"1575.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"2257.5000\",\"grand_total\":\"24832.5000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"1\",\"paid\":\"24832.5000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"32c7714ccc842b13517dd6a0a83e79923958b47cbc4d4fe0d097fcd081fc07ff\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4255\",\"sale_id\":\"650\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4256\",\"sale_id\":\"650\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4257\",\"sale_id\":\"650\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4258\",\"sale_id\":\"650\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4259\",\"sale_id\":\"650\",\"product_id\":\"1036\",\"product_code\":\"109\",\"product_name\":\"Guiness Stout (Big)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2700.0000\",\"unit_price\":\"2700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"c9970259afee44fbde8dd27570f34b03.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-20 15:24:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1317, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"646\",\"date\":\"2023-11-20 14:50:52\",\"reference_no\":\"SALE2023\\/11\\/0198\",\"customer_id\":\"25\",\"customer\":\"Table 5\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1342.5000\",\"total_tax\":\"1342.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"19242.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-20 15:03:29\",\"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\":\"b8da73a88cd655406fe11be5451dd6dad661e0be24576f6cee03777ca4305ada\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 15:24:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1318, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"244\",\"date\":\"2023-11-20 15:46:37\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"43450.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3146\",\"suspend_id\":\"244\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3147\",\"suspend_id\":\"244\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3148\",\"suspend_id\":\"244\",\"product_id\":\"931\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3149\",\"suspend_id\":\"244\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3150\",\"suspend_id\":\"244\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3151\",\"suspend_id\":\"244\",\"product_id\":\"920\",\"product_code\":\"27d\",\"product_name\":\"Stir-fried with holy basil (mixed meat)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-20 15:34:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1319, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"652\",\"date\":\"2023-11-20 16:34:23\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0450\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"39500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"3950.0000\",\"grand_total\":\"43450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"1\",\"paid\":\"43450.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\":\"ca35ca4ddce982b4091520d61a0511b53ce4128f713aa0d48a44a0986709fa15\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4262\",\"sale_id\":\"652\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4263\",\"sale_id\":\"652\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4264\",\"sale_id\":\"652\",\"product_id\":\"931\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4265\",\"sale_id\":\"652\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4266\",\"sale_id\":\"652\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4267\",\"sale_id\":\"652\",\"product_id\":\"920\",\"product_code\":\"27d\",\"product_name\":\"Stir-fried with holy basil (mixed meat)\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-20 15:35:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1320, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"245\",\"date\":\"2023-11-20 16:27:20\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"42460.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3152\",\"suspend_id\":\"245\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3153\",\"suspend_id\":\"245\",\"product_id\":\"915\",\"product_code\":\"25\",\"product_name\":\"Boiled chicken in fish sauce\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3154\",\"suspend_id\":\"245\",\"product_id\":\"1096\",\"product_code\":\"169\",\"product_name\":\"Tropical Storm\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3155\",\"suspend_id\":\"245\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3156\",\"suspend_id\":\"245\",\"product_id\":\"945\",\"product_code\":\"39\",\"product_name\":\"Hat Yai-style fried chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-20 15:55:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1321, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"657\",\"date\":\"2023-11-20 18:48:35\",\"reference_no\":\"SALE2023\\/11\\/0202\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"600.0000\",\"total_tax\":\"600.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"8600.0000\",\"sale_status\":\"pending\",\"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\":\"9e9c8937b5a111eb869b1da0c5b8f2c73dc17787910bd93a8f552b14149fada8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 18:11:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1322, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"656\",\"date\":\"2023-11-20 18:46:56\",\"reference_no\":\"SALE2023\\/11\\/0201\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"27700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2077.5000\",\"total_tax\":\"2077.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"29777.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-20 19:18:43\",\"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\":\"0ccb7f5b96aa3333a9f83a0274f8dc8a78e8f06e86e99eaf60fbfc545ddb37bc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 18:19:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1323, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"659\",\"date\":\"2023-11-20 19:07:24\",\"reference_no\":\"SALE2023\\/11\\/0204\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"56000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4200.0000\",\"total_tax\":\"4200.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"60200.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-20 19:17:41\",\"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\":\"caaed40bdb9d8ef0ee60d02e1e272a7b04baa6491d33e5a71cfb1349e3d2a87c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 19:10:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1324, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"658\",\"date\":\"2023-11-20 18:50:55\",\"reference_no\":\"SALE2023\\/11\\/0203\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"44500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3337.5000\",\"total_tax\":\"3337.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"47837.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-20 19:32:37\",\"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\":\"62c5fcfb1d1fc12f6fb3a15336c7a22d050c9ef98d729df37384052269d26586\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 19:16:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1325, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"648\",\"date\":\"2023-11-20 15:48:26\",\"reference_no\":\"SALE2023\\/11\\/0200\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"39600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2970.0000\",\"total_tax\":\"2970.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"42570.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-20 20:12:04\",\"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\":\"29934b38f70d62cab0a9d4856a91e7219509279824ba0ee4c15d9a634dbec131\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 19:17:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1326, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"647\",\"date\":\"2023-11-20 15:24:28\",\"reference_no\":\"SALE2023\\/11\\/0199\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2332.5000\",\"total_tax\":\"2332.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"33432.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-20 16:36: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\":\"80e9ee85b57a69796b3af62cc11c53a4b8c49552ddc5a5055bfb00ca4a1aae24\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 19:17:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1327, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"249\",\"date\":\"2023-11-20 20:22:32\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"17\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"89980.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3171\",\"suspend_id\":\"249\",\"product_id\":\"872\",\"product_code\":\"9a\",\"product_name\":\"Stir-fried noodle with soy sauce (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3172\",\"suspend_id\":\"249\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3173\",\"suspend_id\":\"249\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3174\",\"suspend_id\":\"249\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3175\",\"suspend_id\":\"249\",\"product_id\":\"864\",\"product_code\":\"5\",\"product_name\":\"Tom yum fried rice\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3176\",\"suspend_id\":\"249\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3177\",\"suspend_id\":\"249\",\"product_id\":\"925\",\"product_code\":\"29\",\"product_name\":\"Stir-fried chicken with ginger\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3178\",\"suspend_id\":\"249\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3179\",\"suspend_id\":\"249\",\"product_id\":\"1112\",\"product_code\":\"PR173\",\"product_name\":\"Ichitan orange\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3180\",\"suspend_id\":\"249\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-20 19:32:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1328, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"247\",\"date\":\"2023-11-20 20:20:11\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"30508.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3164\",\"suspend_id\":\"247\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3165\",\"suspend_id\":\"247\",\"product_id\":\"872\",\"product_code\":\"9a\",\"product_name\":\"Stir-fried noodle with soy sauce (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3166\",\"suspend_id\":\"247\",\"product_id\":\"1037\",\"product_code\":\"110\",\"product_name\":\"Desperado\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3167\",\"suspend_id\":\"247\",\"product_id\":\"1072\",\"product_code\":\"145\",\"product_name\":\"Long Island Iced Tea\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3168\",\"suspend_id\":\"247\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-20 19:52:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1329, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"663\",\"date\":\"2023-11-20 19:44:21\",\"reference_no\":\"SALE2023\\/11\\/0206\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1935.0000\",\"total_tax\":\"1935.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"27735.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-20 19:53:59\",\"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\":\"fa67a1c3059156e89db4255ae45ba8dbd7dd947eade358de688a7f9900a3a621\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 19:52:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1330, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"664\",\"date\":\"2023-11-20 20:05:17\",\"reference_no\":\"SALE2023\\/11\\/0207\",\"customer_id\":\"25\",\"customer\":\"Table 5\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1297.5000\",\"total_tax\":\"1297.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"18597.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-20 20:29:19\",\"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\":\"dc8a7140b354d6aa2b138be783ff3d47590359061e9b88d1b26fcb5f9ab3a8b8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 19:52:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1331, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"669\",\"date\":\"2023-11-20 21:01:18\",\"reference_no\":\"SALE2023\\/11\\/0208\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"667.5000\",\"total_tax\":\"667.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"9567.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-20 21:01:41\",\"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\":\"959541e4e86d19d0d63844f52dc88e2ce1ad9cd28d17bc29f71863e454779df0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 20:15:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1332, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"248\",\"date\":\"2023-11-20 20:20:47\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"11115.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T5\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3169\",\"suspend_id\":\"248\",\"product_id\":\"938\",\"product_code\":\"37b\",\"product_name\":\"Spicy minced (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3170\",\"suspend_id\":\"248\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-20 20:16:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1333, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"673\",\"date\":\"2023-11-20 21:16:51\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0461\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"705.0000\",\"total_tax\":\"705.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1010.5000\",\"grand_total\":\"11115.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"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\":\"ff205700a81105222f20e30bfe35c6be4dede33a4d3bcbf654775e2bccd4c220\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4528\",\"sale_id\":\"673\",\"product_id\":\"938\",\"product_code\":\"37b\",\"product_name\":\"Spicy minced (chicken)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4529\",\"sale_id\":\"673\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-20 20:17:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1334, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"662\",\"date\":\"2023-11-20 19:24:42\",\"reference_no\":\"SALE2023\\/11\\/0205\",\"customer_id\":\"22\",\"customer\":\"Table 19\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"151190.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"11400.0000\",\"total_tax\":\"12209.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"163400.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-20 21:22:46\",\"total_items\":\"21\",\"pos\":\"0\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9b74cc059c5987a64e1a4b26a3269ab6825b8c208ac700cc3460fe2723cc88d1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 20:31:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1335, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"246\",\"date\":\"2023-11-20 20:19:35\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"86559.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T19\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3157\",\"suspend_id\":\"246\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3158\",\"suspend_id\":\"246\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3159\",\"suspend_id\":\"246\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3160\",\"suspend_id\":\"246\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3161\",\"suspend_id\":\"246\",\"product_id\":\"1078\",\"product_code\":\"151\",\"product_name\":\"Chi Exotic\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3162\",\"suspend_id\":\"246\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3163\",\"suspend_id\":\"246\",\"product_id\":\"1058\",\"product_code\":\"131\",\"product_name\":\"Bullet\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-20 20:32:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1336, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"675\",\"date\":\"2023-11-20 21:43:42\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0463\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\",\"service_charge\":\"2500.0000\",\"grand_total\":\"27500.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\":\"1\",\"paid\":\"27500.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\":\"7be530f77f1be3e1b10e88fbfdd52465237884020f6234d19daf3158547b3136\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4554\",\"sale_id\":\"675\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4555\",\"sale_id\":\"675\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4556\",\"sale_id\":\"675\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-20 20:49:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1337, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"671\",\"date\":\"2023-11-20 21:03:54\",\"reference_no\":\"SALE2023\\/11\\/0210\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"33890.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2602.5000\",\"total_tax\":\"3411.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"37302.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-20 21:12:12\",\"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\":\"e80ae794a97bf23cab2f7cfba4e9c61d59096e79975ce608674ff7f2760d7772\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 20:53:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1338, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"670\",\"date\":\"2023-11-20 21:01:22\",\"reference_no\":\"SALE2023\\/11\\/0209\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1875.0000\",\"total_tax\":\"1875.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"26875.0000\",\"sale_status\":\"pending\",\"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\":\"28016bf76c84955a2385ca40908de7413e0df46a9b30f2024838ac5aa1e7180e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-20 20:53:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1339, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"250\",\"date\":\"2023-11-21 13:53:19\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"34870.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3181\",\"suspend_id\":\"250\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3182\",\"suspend_id\":\"250\",\"product_id\":\"897\",\"product_code\":\"18a\",\"product_name\":\"Red curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3183\",\"suspend_id\":\"250\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3184\",\"suspend_id\":\"250\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3185\",\"suspend_id\":\"250\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-21 13:15:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1340, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"678\",\"date\":\"2023-11-21 13:07:35\",\"reference_no\":\"SALE2023\\/11\\/0211\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"33700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2527.5000\",\"total_tax\":\"2527.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"36227.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-21 14:07:03\",\"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\":\"8ebbb50d1ffc2ff7a7106c24b2b4e2c46f1a92e0231f13c76202235fc42ea2f1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-21 15:49:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1341, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"682\",\"date\":\"2023-11-21 16:24:19\",\"reference_no\":\"SALE2023\\/11\\/0214\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"55200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4140.0000\",\"total_tax\":\"4140.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"59340.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-21 16:54:58\",\"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\":\"a8c16e2734721b9172370e70e0ab87cc20195bb070a93a8ead338341b8ea8d31\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-21 17:38:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1342, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"681\",\"date\":\"2023-11-21 15:32:26\",\"reference_no\":\"SALE2023\\/11\\/0213\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"46000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3450.0000\",\"total_tax\":\"3450.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"49450.0000\",\"sale_status\":\"pending\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-21 15:46:01\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"49450.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"7bb90af55b54e1546b853a91d74e75b21e87a0f4eaa9a4949b6ac723ff63f384\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-21 17:38:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1343, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"680\",\"date\":\"2023-11-21 15:12:58\",\"reference_no\":\"SALE2023\\/11\\/0212\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2340.0000\",\"total_tax\":\"2340.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"33540.0000\",\"sale_status\":\"pending\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-21 15:19:48\",\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"33540.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"dfe7e7015e709085aa60b569b0b3e6e72965b872015b9a776c6086d8e7bc2d3f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-21 17:40:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1344, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"251\",\"date\":\"2023-11-21 18:57:43\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"9790.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3186\",\"suspend_id\":\"251\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3187\",\"suspend_id\":\"251\",\"product_id\":\"1040\",\"product_code\":\"113\",\"product_name\":\"Smirnoff Ice (Can)\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3188\",\"suspend_id\":\"251\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-21 18:10:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1345, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"252\",\"date\":\"2023-11-21 18:58:20\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"35970.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3189\",\"suspend_id\":\"252\",\"product_id\":\"950\",\"product_code\":\"44\",\"product_name\":\"Deep fried chicken rolls (8 pcs)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3190\",\"suspend_id\":\"252\",\"product_id\":\"1083\",\"product_code\":\"156\",\"product_name\":\"Bael Fruit Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3191\",\"suspend_id\":\"252\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3192\",\"suspend_id\":\"252\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3193\",\"suspend_id\":\"252\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3194\",\"suspend_id\":\"252\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-21 18:11:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1346, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"253\",\"date\":\"2023-11-21 19:02:47\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"53130.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3195\",\"suspend_id\":\"253\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3196\",\"suspend_id\":\"253\",\"product_id\":\"939\",\"product_code\":\"37c\",\"product_name\":\"Spicy chopped meat salad (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3197\",\"suspend_id\":\"253\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3198\",\"suspend_id\":\"253\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3199\",\"suspend_id\":\"253\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3200\",\"suspend_id\":\"253\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3201\",\"suspend_id\":\"253\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-21 18:43:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1347, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"685\",\"date\":\"2023-11-21 18:22:05\",\"reference_no\":\"SALE2023\\/11\\/0216\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"34390.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2640.0000\",\"total_tax\":\"3449.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"37840.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-21 19:01:50\",\"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\":\"a636c62fde93090f1cc331414196b7d08b533e161792689872646622876f0b07\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-21 18:50:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1348, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"684\",\"date\":\"2023-11-21 18:20:47\",\"reference_no\":\"SALE2023\\/11\\/0215\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"667.5000\",\"total_tax\":\"667.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"9567.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"819f4867d7ac26355f743884bc2d831020dc0e757406c2432a922a423cabdf97\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-21 18:51:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1349, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"686\",\"date\":\"2023-11-21 18:55:45\",\"reference_no\":\"SALE2023\\/11\\/0217\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"48300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3622.5000\",\"total_tax\":\"3622.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"51922.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"68a2b09e2bc4b668cd7645b0114e2ddc8db6f342c8a0903fa1c1dd6edb453b3b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-21 18:51:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1350, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"689\",\"date\":\"2023-11-21 19:30:38\",\"reference_no\":\"SALE2023\\/11\\/0218\",\"customer_id\":\"31\",\"customer\":\"Table 11\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"18900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1417.5000\",\"total_tax\":\"1417.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"20317.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-21 19:49:39\",\"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\":\"b77f799930a421c876af33242cf4e5a52044229b67ddb7d973f324206a2acd03\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-21 19:13:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1351, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"254\",\"date\":\"2023-11-22 15:31:08\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"35120.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3202\",\"suspend_id\":\"254\",\"product_id\":\"950\",\"product_code\":\"44\",\"product_name\":\"Deep fried chicken rolls (8 pcs)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3203\",\"suspend_id\":\"254\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3204\",\"suspend_id\":\"254\",\"product_id\":\"873\",\"product_code\":\"9b\",\"product_name\":\"Stir-fried noodle with soy sauce (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-22 14:45:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1352, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"693\",\"date\":\"2023-11-22 14:34:24\",\"reference_no\":\"SALE2023\\/11\\/0219\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2227.5000\",\"total_tax\":\"2227.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"31927.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-22 14:48:59\",\"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\":\"b378255df452ea2d6c11c591eef60efd85cdd356e4b39c7886ac5d1d26dcc2fc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-22 15:34:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1353, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"696\",\"date\":\"2023-11-22 15:46:02\",\"reference_no\":\"SALE2023\\/11\\/0220\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"53700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4027.5000\",\"total_tax\":\"4027.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"57727.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-22 15:48:14\",\"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\":\"3f1a355a95ae6c93e4e336ef837ada59e500ed0b0b57dca102756726715aac35\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-22 16:19:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1354, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"703\",\"date\":\"2023-11-22 19:03:21\",\"reference_no\":\"SALE2023\\/11\\/0222\",\"customer_id\":\"32\",\"customer\":\"Table 12\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1582.5000\",\"total_tax\":\"1582.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"22682.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"17\",\"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\":\"f8a3d94bf10e7f65ac8225a5426b8b07eb9c3b2c09a535424146f7551e7f4be1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-22 18:06:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1355, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"701\",\"date\":\"2023-11-22 18:50:13\",\"reference_no\":\"SALE2023\\/11\\/0221\",\"customer_id\":\"32\",\"customer\":\"Table 12\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"47700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3577.5000\",\"total_tax\":\"3577.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"51277.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"17\",\"updated_by\":\"17\",\"updated_at\":\"2023-11-22 18:54:56\",\"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\":\"bc8aa33c1e7b501659fcadb91fd28c339367a0463f741c89f84ba37903cdaf2f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-22 18:06:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1356, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"707\",\"date\":\"2023-11-22 20:40:51\",\"reference_no\":\"SALE2023\\/11\\/0226\",\"customer_id\":\"18\",\"customer\":\"Table 15\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"150.0000\",\"total_tax\":\"150.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"2150.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"dbd36141905151009a8b4573a4c237aaa2486b9422fc05969f8ad512de9c4b9c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-22 19:42:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1357, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"704\",\"date\":\"2023-11-22 19:33:31\",\"reference_no\":\"SALE2023\\/11\\/0223\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1875.0000\",\"total_tax\":\"1875.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"26875.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-22 20:40:54\",\"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\":\"6e6a4bcc9a24c566ccadb7252b616e6ab916a3cd0b4fb1e9f224f7ab4da34b40\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-22 19:50:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1358, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"255\",\"date\":\"2023-11-22 20:26:17\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"28971.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3205\",\"suspend_id\":\"255\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3206\",\"suspend_id\":\"255\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3207\",\"suspend_id\":\"255\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3208\",\"suspend_id\":\"255\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-22 19:51:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1359, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"256\",\"date\":\"2023-11-22 20:54:13\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"46530.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3214\",\"suspend_id\":\"256\",\"product_id\":\"989\",\"product_code\":\"73b\",\"product_name\":\"Liria red (shot)\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3215\",\"suspend_id\":\"256\",\"product_id\":\"1072\",\"product_code\":\"145\",\"product_name\":\"Long Island Iced Tea\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3216\",\"suspend_id\":\"256\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3217\",\"suspend_id\":\"256\",\"product_id\":\"935\",\"product_code\":\"35c\",\"product_name\":\"Spicy papaya salad (mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3218\",\"suspend_id\":\"256\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-22 20:16:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1360, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"710\",\"date\":\"2023-11-22 21:12:46\",\"reference_no\":\"SALE2023\\/11\\/0227\",\"customer_id\":\"18\",\"customer\":\"Table 15\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"150.0000\",\"total_tax\":\"150.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"2150.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"c805970701ff6b7f9ce6071540f2c522921d71fe3d4cdb05c73f4b678e0e3ebf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-22 20:31:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1361, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"705\",\"date\":\"2023-11-22 20:16:35\",\"reference_no\":\"SALE2023\\/11\\/0224\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"43300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3247.5000\",\"total_tax\":\"3247.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"46547.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-22 21:12:35\",\"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\":\"02831dd68e28e93890342bf5b7f1e1c181e028e3b20d99341093ff8fb140cf38\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-22 20:39:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1362, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"706\",\"date\":\"2023-11-22 20:29:29\",\"reference_no\":\"SALE2023\\/11\\/0225\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1710.0000\",\"total_tax\":\"1710.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"24510.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-22 21:06:03\",\"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\":\"ebe195dc298c391127214682f93fbacbea1b978f75203aa264d69847ee47bbea\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-22 21:33:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1363, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"257\",\"date\":\"2023-11-23 13:04:40\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"23\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"112860.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3322\",\"suspend_id\":\"257\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3323\",\"suspend_id\":\"257\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3324\",\"suspend_id\":\"257\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3325\",\"suspend_id\":\"257\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3326\",\"suspend_id\":\"257\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3327\",\"suspend_id\":\"257\",\"product_id\":\"951\",\"product_code\":\"45\",\"product_name\":\"Red grilled chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3328\",\"suspend_id\":\"257\",\"product_id\":\"882\",\"product_code\":\"11c\",\"product_name\":\"Noodles in gravy sauce (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3329\",\"suspend_id\":\"257\",\"product_id\":\"1112\",\"product_code\":\"PR173\",\"product_name\":\"Ichitan orange\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3330\",\"suspend_id\":\"257\",\"product_id\":\"1087\",\"product_code\":\"160\",\"product_name\":\"Milk Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3331\",\"suspend_id\":\"257\",\"product_id\":\"1052\",\"product_code\":\"125\",\"product_name\":\"Fanta\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3332\",\"suspend_id\":\"257\",\"product_id\":\"938\",\"product_code\":\"37b\",\"product_name\":\"Spicy minced (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3333\",\"suspend_id\":\"257\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3334\",\"suspend_id\":\"257\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3335\",\"suspend_id\":\"257\",\"product_id\":\"945\",\"product_code\":\"39\",\"product_name\":\"Hat Yai-style fried chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3336\",\"suspend_id\":\"257\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3337\",\"suspend_id\":\"257\",\"product_id\":\"962\",\"product_code\":\"55\",\"product_name\":\"Cendol in coconut milk\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-23 12:12:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1364, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"719\",\"date\":\"2023-11-23 15:34:00\",\"reference_no\":\"SALE2023\\/11\\/0228\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2302.5000\",\"total_tax\":\"2302.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"33002.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-23 16:09:26\",\"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\":\"61168ec2812fddeab731c228f66c15dc82f1be2877e9979faeb15b22f5e1f51f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-23 15:09:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1365, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"258\",\"date\":\"2023-11-23 16:34:26\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"11\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"92235.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3346\",\"suspend_id\":\"258\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3347\",\"suspend_id\":\"258\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3348\",\"suspend_id\":\"258\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3349\",\"suspend_id\":\"258\",\"product_id\":\"937\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3350\",\"suspend_id\":\"258\",\"product_id\":\"908\",\"product_code\":\"21c\",\"product_name\":\"Massaman Curry (lamb)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3351\",\"suspend_id\":\"258\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3352\",\"suspend_id\":\"258\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3353\",\"suspend_id\":\"258\",\"product_id\":\"959\",\"product_code\":\"52\",\"product_name\":\"Sago pearls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3354\",\"suspend_id\":\"258\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3355\",\"suspend_id\":\"258\",\"product_id\":\"942\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-23 15:45:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1366, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"720\",\"date\":\"2023-11-23 15:36:00\",\"reference_no\":\"SALE2023\\/11\\/0229\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"78000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"5850.0000\",\"total_tax\":\"5850.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"83850.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-23 16:33:32\",\"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\":\"016cbc9846bfee4b2a634bc504e15881f6b3cafcb9d3e44c307bc92103b39f01\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-23 16:05:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1367, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"724\",\"date\":\"2023-11-23 17:37:25\",\"reference_no\":\"SALE2023\\/11\\/0230\",\"customer_id\":\"31\",\"customer\":\"Table 11\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1545.0000\",\"total_tax\":\"1545.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"22145.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"078b57ee45ddf2d831ccf41d13a979354ec1f3a30664fe6d0ecb6361d532e3ff\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-23 17:02:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1368, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"725\",\"date\":\"2023-11-23 17:41:28\",\"reference_no\":\"SALE2023\\/11\\/0230\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"24800.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-23 18:00:25\",\"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\":\"629aa097f53217065c7c33423ef8a16209feae898477a4b86f992dec4b7defd0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-23 17:34:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1369, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"723\",\"date\":\"2023-11-23 17:29:29\",\"reference_no\":\"SALE2023\\/11\\/0230\",\"customer_id\":\"31\",\"customer\":\"Table 11\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1545.0000\",\"total_tax\":\"1545.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"22145.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-23 17:35:34\",\"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\":\"bd8f55278dba8abac2e464b0b8ddbd90d83df4a69481798ad9f9ef244c31c368\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-23 17:58:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1370, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"726\",\"date\":\"2023-11-23 17:54:59\",\"reference_no\":\"SALE2023\\/11\\/0230\",\"customer_id\":\"33\",\"customer\":\"Table 13\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"27900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"27900.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-23 19:04:42\",\"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\":\"e9ac4d66c9991222b755f3bcbd74252796056510cd3edf523e70aee5cca2b479\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-23 18:41:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1371, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"260\",\"date\":\"2023-11-23 19:46:40\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"51700.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3380\",\"suspend_id\":\"260\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3381\",\"suspend_id\":\"260\",\"product_id\":\"943\",\"product_code\":\"38c\",\"product_name\":\"Fried spring rolls (stuffed with vegetables)\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3382\",\"suspend_id\":\"260\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3383\",\"suspend_id\":\"260\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3384\",\"suspend_id\":\"260\",\"product_id\":\"1006\",\"product_code\":\"88\",\"product_name\":\"Four Cousin White\",\"net_unit_price\":\"6300.0000\",\"unit_price\":\"6300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6300.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6300.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3385\",\"suspend_id\":\"260\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3386\",\"suspend_id\":\"260\",\"product_id\":\"1061\",\"product_code\":\"134\",\"product_name\":\"Pina Colada\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3387\",\"suspend_id\":\"260\",\"product_id\":\"954\",\"product_code\":\"48\",\"product_name\":\"Beef hot pan\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3388\",\"suspend_id\":\"260\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-23 18:50:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1372, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"259\",\"date\":\"2023-11-23 19:46:10\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"111628.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T16\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3377\",\"suspend_id\":\"259\",\"product_id\":\"861\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3378\",\"suspend_id\":\"259\",\"product_id\":\"1010\",\"product_code\":\"92\",\"product_name\":\"Regency Vsop\",\"net_unit_price\":\"85000.0000\",\"unit_price\":\"85000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"85000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"85000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3379\",\"suspend_id\":\"259\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-23 19:04:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1373, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"731\",\"date\":\"2023-11-23 18:58:00\",\"reference_no\":\"SALE2023\\/11\\/0231\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"46190.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"3525.0000\",\"total_tax\":\"4334.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"50525.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-23 19:45:07\",\"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\":\"2703c841044dac944690de9dedfb35bcc5cba71db093b3f610ceaefb1b484c15\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-23 19:04:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1374, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"734\",\"date\":\"2023-11-23 19:50:00\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0498\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"46190.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"809.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"4700.0000\",\"grand_total\":\"51700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"1\",\"paid\":\"51700.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\":\"30d2f34aaa3b400bf9b9d722d7ce7892f5c8de0198eafda8874557476e609943\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4967\",\"sale_id\":\"734\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4968\",\"sale_id\":\"734\",\"product_id\":\"943\",\"product_code\":\"38c\",\"product_name\":\"Fried spring rolls (stuffed with vegetables)\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4969\",\"sale_id\":\"734\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"SER\",\"tax_name\":\"Service Charge\",\"tax_rate\":\"10.0000\",\"image\":\"8636ba83bb39673eeb3e425e710a8ef8.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4970\",\"sale_id\":\"734\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4971\",\"sale_id\":\"734\",\"product_id\":\"1006\",\"product_code\":\"88\",\"product_name\":\"Four Cousin White\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"6300.0000\",\"unit_price\":\"6300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"4fa949e421d37189dace5a2bdf9f3d80.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4972\",\"sale_id\":\"734\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"product_type\":\"standard\",\"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\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4973\",\"sale_id\":\"734\",\"product_id\":\"1061\",\"product_code\":\"134\",\"product_name\":\"Pina Colada\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4974\",\"sale_id\":\"734\",\"product_id\":\"954\",\"product_code\":\"48\",\"product_name\":\"Beef hot pan\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"4975\",\"sale_id\":\"734\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"b70e2b136a4ad222a25e3fe5dd2551a2.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-23 19:29:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1375, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"737\",\"date\":\"2023-11-23 21:22:30\",\"reference_no\":\"SALE2023\\/11\\/0232\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"36200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2715.0000\",\"total_tax\":\"2715.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"38915.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"35cfeef0e709c4c5eaa3a1bf8cf12c02d90d15dfc14bae24c3890ce423daec32\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-23 21:04:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1376, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"261\",\"date\":\"2023-11-23 21:58:36\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"1\",\"total\":\"39820.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T7\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3389\",\"suspend_id\":\"261\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3390\",\"suspend_id\":\"261\",\"product_id\":\"884\",\"product_code\":\"12\",\"product_name\":\"Baked shrimp with glass noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3391\",\"suspend_id\":\"261\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3392\",\"suspend_id\":\"261\",\"product_id\":\"892\",\"product_code\":\"16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3393\",\"suspend_id\":\"261\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3394\",\"suspend_id\":\"261\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-23 21:04:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1377, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"742\",\"date\":\"2023-11-24 16:02:00\",\"reference_no\":\"SALE2023\\/11\\/0233\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"29300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-24 16:29:27\",\"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\":\"08f5ecd06daac9de0e256b357eb3118eca958a12eac6d931b3e2a8e611348c9c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-24 15:42:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1378, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"744\",\"date\":\"2023-11-24 17:40:46\",\"reference_no\":\"SALE2023\\/11\\/0234\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"46900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3517.5000\",\"total_tax\":\"3517.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"50417.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-24 17:46:47\",\"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\":\"db6baa435ea20e5277445d4a367a6af89d848eabd50e7b29604a5c570838962a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-24 17:37:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1379, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"747\",\"date\":\"2023-11-24 19:38:22\",\"reference_no\":\"SALE2023\\/11\\/0236\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"19400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1455.0000\",\"total_tax\":\"1455.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"20855.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"b6abce66840c6e3a93968c7227a2d1e0f35e5fa7967d22e0dd9f27c1106ab219\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-24 18:52:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1380, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"746\",\"date\":\"2023-11-24 19:30:08\",\"reference_no\":\"SALE2023\\/11\\/0235\",\"customer_id\":\"34\",\"customer\":\"Table 14\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"32900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2467.5000\",\"total_tax\":\"2467.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"35367.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-24 19:31:57\",\"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\":\"3758b1c6b59a5f5c44ceaf6b8a7ddb12fc407b98834e1400c4bfa70acb28cf49\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-24 18:55:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1381, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"262\",\"date\":\"2023-11-24 20:02:59\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"11739.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"PEAW\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3405\",\"suspend_id\":\"262\",\"product_id\":\"898\",\"product_code\":\"18b\",\"product_name\":\"Red curry (beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3406\",\"suspend_id\":\"262\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-24 19:18:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1382, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"263\",\"date\":\"2023-11-24 20:03:09\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"41312.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"FON\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3407\",\"suspend_id\":\"263\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3408\",\"suspend_id\":\"263\",\"product_id\":\"897\",\"product_code\":\"18a\",\"product_name\":\"Red curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3409\",\"suspend_id\":\"263\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3410\",\"suspend_id\":\"263\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3411\",\"suspend_id\":\"263\",\"product_id\":\"935\",\"product_code\":\"35c\",\"product_name\":\"Spicy papaya salad (mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-24 19:19:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1383, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"264\",\"date\":\"2023-11-24 20:02:47\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"2257.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"peng\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3404\",\"suspend_id\":\"264\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-24 19:19:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1384, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"750\",\"date\":\"2023-11-24 20:01:50\",\"reference_no\":\"SALE2023\\/11\\/0237\",\"customer_id\":\"22\",\"customer\":\"Table 19\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"300.0000\",\"total_tax\":\"300.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"4300.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"17\",\"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\":\"fc1b319498ff958d3659f485748a3e58e0b878f78d63f9bbe15fd7c3b10747c6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-24 19:24:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1385, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"751\",\"date\":\"2023-11-24 20:18:39\",\"reference_no\":\"SALE2023\\/11\\/0238\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2377.5000\",\"total_tax\":\"2377.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"34077.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-24 20:38:16\",\"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\":\"c5783b0ffc4e2caeaa2adb583ea9dbd5feb0c7872c94d2cd0ab633c946cd1f61\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-24 20:02:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1386, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"757\",\"date\":\"2023-11-24 21:10:08\",\"reference_no\":\"SALE2023\\/11\\/0239\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2887.5000\",\"total_tax\":\"2887.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"41387.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-24 21:38:41\",\"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\":\"65912c625b0342978c7c8fa3036b505ba40d629b6adc8cee2c19a0562cf01146\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-24 21:43:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1387, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"761\",\"date\":\"2023-11-25 11:39:42\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0517\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1935.0000\",\"total_tax\":\"1935.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1386.7500\",\"grand_total\":\"29121.7500\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"1\",\"paid\":\"29121.7500\",\"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\":\"34038e363350c9cd08d196822db90d079f105beb9951d20da85ad9afd2312baa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5148\",\"sale_id\":\"761\",\"product_id\":\"902\",\"product_code\":\"19b\",\"product_name\":\"Panang curry (beef)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5149\",\"sale_id\":\"761\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5150\",\"sale_id\":\"761\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-25 11:00:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1388, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"266\",\"date\":\"2023-11-25 13:24:31\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"58807.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3420\",\"suspend_id\":\"266\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3421\",\"suspend_id\":\"266\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3422\",\"suspend_id\":\"266\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3423\",\"suspend_id\":\"266\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3424\",\"suspend_id\":\"266\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3425\",\"suspend_id\":\"266\",\"product_id\":\"884\",\"product_code\":\"12\",\"product_name\":\"Baked shrimp with glass noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3426\",\"suspend_id\":\"266\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-25 12:46:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1389, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"764\",\"date\":\"2023-11-25 12:04:41\",\"reference_no\":\"SALE2023\\/11\\/0240\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"60600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4545.0000\",\"total_tax\":\"4545.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"65145.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-25 14:50:22\",\"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\":\"042dd355ecb07b4a30e66d97f439453c7afed799aad474c9596e3e9f22d4ee35\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-25 14:31:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1390, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"765\",\"date\":\"2023-11-25 13:46:00\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0520\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"65600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4920.0000\",\"total_tax\":\"4920.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"2800.3800\",\"grand_total\":\"70520.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-25 15:30:35\",\"total_items\":\"11\",\"pos\":\"1\",\"paid\":\"58807.8800\",\"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\":\"824a03257565eae8764c594fa37466f0f39778bb2544acaa39ab68fa27f0e12c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5214\",\"sale_id\":\"765\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"0351e7f12fa437cfb06564e545bcdcee.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5215\",\"sale_id\":\"765\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5216\",\"sale_id\":\"765\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5217\",\"sale_id\":\"765\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5218\",\"sale_id\":\"765\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5219\",\"sale_id\":\"765\",\"product_id\":\"884\",\"product_code\":\"12\",\"product_name\":\"Baked shrimp with glass noodles\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5220\",\"sale_id\":\"765\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5221\",\"sale_id\":\"765\",\"product_id\":\"959\",\"product_code\":\"52\",\"product_name\":\"Sago pearls\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-25 14:32:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1391, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"265\",\"date\":\"2023-11-25 15:54:00\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"50342.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3449\",\"suspend_id\":\"265\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3450\",\"suspend_id\":\"265\",\"product_id\":\"882\",\"product_code\":\"11c\",\"product_name\":\"Noodles in gravy sauce (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3451\",\"suspend_id\":\"265\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3452\",\"suspend_id\":\"265\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3453\",\"suspend_id\":\"265\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3454\",\"suspend_id\":\"265\",\"product_id\":\"872\",\"product_code\":\"9a\",\"product_name\":\"Stir-fried noodle with soy sauce (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3455\",\"suspend_id\":\"265\",\"product_id\":\"909\",\"product_code\":\"22\",\"product_name\":\"Sour soup with fish\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3456\",\"suspend_id\":\"265\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-25 15:10:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1392, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"766\",\"date\":\"2023-11-25 15:00:45\",\"reference_no\":\"SALE2023\\/11\\/0241\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1192.5000\",\"total_tax\":\"1192.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"17092.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":\"18\",\"updated_at\":\"2023-11-25 15:41:35\",\"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\":\"7cbce03b99934609df03bfbe87cd19506038611429150a377c0b92a0a1b5de5c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-25 15:18:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1393, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"767\",\"date\":\"2023-11-25 15:18:08\",\"reference_no\":\"SALE2023\\/11\\/0242\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"44100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3307.5000\",\"total_tax\":\"3307.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"47407.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-25 15:24:51\",\"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\":\"265ad1cf563ae1e037ac3c4b87636d2d769fa3ca1d0e71fd936e63e3542d184b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-25 15:19:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1394, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"267\",\"date\":\"2023-11-25 22:23:14\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"14\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"96395.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3508\",\"suspend_id\":\"267\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3509\",\"suspend_id\":\"267\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3510\",\"suspend_id\":\"267\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3511\",\"suspend_id\":\"267\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3512\",\"suspend_id\":\"267\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3513\",\"suspend_id\":\"267\",\"product_id\":\"857\",\"product_code\":\"2\",\"product_name\":\"Lamb Biryani\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3514\",\"suspend_id\":\"267\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3515\",\"suspend_id\":\"267\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3516\",\"suspend_id\":\"267\",\"product_id\":\"1052\",\"product_code\":\"125\",\"product_name\":\"Fanta\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3517\",\"suspend_id\":\"267\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3518\",\"suspend_id\":\"267\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3519\",\"suspend_id\":\"267\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3520\",\"suspend_id\":\"267\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-25 21:30:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1395, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"268\",\"date\":\"2023-11-25 22:24:05\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"33298.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"vip2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3526\",\"suspend_id\":\"268\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3527\",\"suspend_id\":\"268\",\"product_id\":\"1046\",\"product_code\":\"119\",\"product_name\":\"Throphy Beer\",\"net_unit_price\":\"1800.0000\",\"unit_price\":\"1800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1800.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3528\",\"suspend_id\":\"268\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3529\",\"suspend_id\":\"268\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3530\",\"suspend_id\":\"268\",\"product_id\":\"874\",\"product_code\":\"9c\",\"product_name\":\"Stir-fried noodle with soy sauce (seafood)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-25 21:36:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1396, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"772\",\"date\":\"2023-11-25 20:09:42\",\"reference_no\":\"SALE2023\\/11\\/0243\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"85400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"6405.0000\",\"total_tax\":\"6405.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"91805.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-25 22:13:29\",\"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\":\"f6d7777958fdca3591190751e3554d0a172d0bfa467fd4806741d473aa4b01f6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-25 21:37:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1397, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"269\",\"date\":\"2023-11-25 22:38:34\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"14\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"96395.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3544\",\"suspend_id\":\"269\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3545\",\"suspend_id\":\"269\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3546\",\"suspend_id\":\"269\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3547\",\"suspend_id\":\"269\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3548\",\"suspend_id\":\"269\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3549\",\"suspend_id\":\"269\",\"product_id\":\"857\",\"product_code\":\"2\",\"product_name\":\"Lamb Biryani\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3550\",\"suspend_id\":\"269\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3551\",\"suspend_id\":\"269\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3552\",\"suspend_id\":\"269\",\"product_id\":\"1052\",\"product_code\":\"125\",\"product_name\":\"Fanta\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3553\",\"suspend_id\":\"269\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3554\",\"suspend_id\":\"269\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3555\",\"suspend_id\":\"269\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3556\",\"suspend_id\":\"269\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-25 21:38:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1398, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"775\",\"date\":\"2023-11-25 22:30:00\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0526\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"85400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"6405.0000\",\"total_tax\":\"6405.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"4270.0000\",\"grand_total\":\"91805.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-25 22:33:58\",\"total_items\":\"14\",\"pos\":\"1\",\"paid\":\"89670.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\":\"f396089d485b364affefb4d111b4ea4bd163f19f78d0e0d3ed0968b765459f60\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5341\",\"sale_id\":\"775\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5342\",\"sale_id\":\"775\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5343\",\"sale_id\":\"775\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5344\",\"sale_id\":\"775\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5345\",\"sale_id\":\"775\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5346\",\"sale_id\":\"775\",\"product_id\":\"857\",\"product_code\":\"2\",\"product_name\":\"Lamb Biryani\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5347\",\"sale_id\":\"775\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5348\",\"sale_id\":\"775\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5349\",\"sale_id\":\"775\",\"product_id\":\"1052\",\"product_code\":\"125\",\"product_name\":\"Fanta\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"474a8f0fed31ee0cd09aa8a55ee80f35.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5350\",\"sale_id\":\"775\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5351\",\"sale_id\":\"775\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"ac09f4fce83170e46a6e17241e05baec.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5352\",\"sale_id\":\"775\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5353\",\"sale_id\":\"775\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-25 21:40:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1399, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"774\",\"date\":\"2023-11-25 20:52:01\",\"reference_no\":\"SALE2023\\/11\\/0244\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2212.5000\",\"total_tax\":\"2212.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"31712.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-25 21:09:13\",\"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\":\"b6065fbc7546a08e769ad4b5720c2338f803ca8e24c834dc91be11a852f4f224\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-25 21:40:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1400, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"270\",\"date\":\"2023-11-26 13:21:20\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"53164.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3557\",\"suspend_id\":\"270\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3558\",\"suspend_id\":\"270\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3559\",\"suspend_id\":\"270\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3560\",\"suspend_id\":\"270\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3561\",\"suspend_id\":\"270\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3562\",\"suspend_id\":\"270\",\"product_id\":\"1125\",\"product_code\":\"997\",\"product_name\":\"PINEAPPLE  FRIED RICE\",\"net_unit_price\":\"10500.0000\",\"unit_price\":\"10500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-26 12:28:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1401, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"778\",\"date\":\"2023-11-26 12:55:21\",\"reference_no\":\"SALE2023\\/11\\/0245\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"50100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3757.5000\",\"total_tax\":\"3757.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"53857.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-26 13:02:14\",\"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\":\"c7a8be9f9c4966276b6978e4103b9a3bb4f4ad28a31b8862c2a20aa99bfdfd72\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-26 13:59:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1402, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"780\",\"date\":\"2023-11-26 14:41:01\",\"reference_no\":\"SALE2023\\/11\\/0246\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2190.0000\",\"total_tax\":\"2190.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"31390.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-26 14:59:20\",\"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\":\"91063a59b0e4b8f8eb6b294aa007fa957d82228e4daa6eda414d1d8a928c9986\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-26 14:22:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1403, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"271\",\"date\":\"2023-11-26 15:24:37\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"18\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"111294.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3592\",\"suspend_id\":\"271\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3593\",\"suspend_id\":\"271\",\"product_id\":\"863\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3594\",\"suspend_id\":\"271\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3595\",\"suspend_id\":\"271\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3596\",\"suspend_id\":\"271\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3597\",\"suspend_id\":\"271\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3598\",\"suspend_id\":\"271\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3599\",\"suspend_id\":\"271\",\"product_id\":\"1091\",\"product_code\":\"164\",\"product_name\":\"Water Melon Juice\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3600\",\"suspend_id\":\"271\",\"product_id\":\"1092\",\"product_code\":\"165\",\"product_name\":\"Strawberry Juice\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3601\",\"suspend_id\":\"271\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3602\",\"suspend_id\":\"271\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3603\",\"suspend_id\":\"271\",\"product_id\":\"1046\",\"product_code\":\"119\",\"product_name\":\"Throphy Beer\",\"net_unit_price\":\"1800.0000\",\"unit_price\":\"1800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1800.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3604\",\"suspend_id\":\"271\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3605\",\"suspend_id\":\"271\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-26 14:27:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1404, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"782\",\"date\":\"2023-11-26 15:06:23\",\"reference_no\":\"SALE2023\\/11\\/0248\",\"customer_id\":\"39\",\"customer\":\"VIP 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"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\":\"4\",\"order_tax\":\"742.5000\",\"total_tax\":\"742.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"10642.5000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"fb90e9adb8ec0f472a65e9dec38832a1441b20210efd82bc313cd0cb4867bfbc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5434\",\"sale_id\":\"782\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5435\",\"sale_id\":\"782\",\"product_id\":\"1016\",\"product_code\":\"96\",\"product_name\":\"Gordon Gin Small\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"446de14816a25a75574802e68fb0b13c.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-26 14:35:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1405, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"273\",\"date\":\"2023-11-26 15:31:06\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"13\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"49213.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3606\",\"suspend_id\":\"273\",\"product_id\":\"945\",\"product_code\":\"39\",\"product_name\":\"Hat Yai-style fried chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3607\",\"suspend_id\":\"273\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3608\",\"suspend_id\":\"273\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3609\",\"suspend_id\":\"273\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3610\",\"suspend_id\":\"273\",\"product_id\":\"1091\",\"product_code\":\"164\",\"product_name\":\"Water Melon Juice\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3611\",\"suspend_id\":\"273\",\"product_id\":\"1092\",\"product_code\":\"165\",\"product_name\":\"Strawberry Juice\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3612\",\"suspend_id\":\"273\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3613\",\"suspend_id\":\"273\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3614\",\"suspend_id\":\"273\",\"product_id\":\"1046\",\"product_code\":\"119\",\"product_name\":\"Throphy Beer\",\"net_unit_price\":\"1800.0000\",\"unit_price\":\"1800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1800.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3615\",\"suspend_id\":\"273\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-26 14:36:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1406, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"272\",\"date\":\"2023-11-26 15:15:01\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"50\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"244938.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3580\",\"suspend_id\":\"272\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3581\",\"suspend_id\":\"272\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3582\",\"suspend_id\":\"272\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"10.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3583\",\"suspend_id\":\"272\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3584\",\"suspend_id\":\"272\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3585\",\"suspend_id\":\"272\",\"product_id\":\"942\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3586\",\"suspend_id\":\"272\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3587\",\"suspend_id\":\"272\",\"product_id\":\"857\",\"product_code\":\"2\",\"product_name\":\"Lamb Biryani\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"29700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3588\",\"suspend_id\":\"272\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"2427.2700\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3589\",\"suspend_id\":\"272\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3590\",\"suspend_id\":\"272\",\"product_id\":\"1052\",\"product_code\":\"125\",\"product_name\":\"Fanta\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3591\",\"suspend_id\":\"272\",\"product_id\":\"1053\",\"product_code\":\"126\",\"product_name\":\"Sprite\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-26 15:56:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1407, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"781\",\"date\":\"2023-11-26 14:47:41\",\"reference_no\":\"SALE2023\\/11\\/0247\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1935.0000\",\"total_tax\":\"1935.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"27735.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-26 15:04:40\",\"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\":\"9bb586f9498d8ad2c2be9f9d1eb238894f82289d2e0b53a2ee7d00bcf1b2646f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-26 16:05:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1408, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"787\",\"date\":\"2023-11-26 16:51:17\",\"reference_no\":\"SALE2023\\/11\\/0249\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"36590.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2805.0000\",\"total_tax\":\"3614.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"40205.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"17\",\"updated_by\":\"17\",\"updated_at\":\"2023-11-26 17:04:09\",\"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\":\"87bc0a2f15b128ed12ddbc713c3f44176f56dce942bf0584afd9498db333408a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-26 16:43:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1409, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"274\",\"date\":\"2023-11-26 17:48:15\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"564.3800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3622\",\"suspend_id\":\"274\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-26 18:23:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1410, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"789\",\"date\":\"2023-11-26 17:28:00\",\"reference_no\":\"SALE2023\\/11\\/0250\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"40300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3022.5000\",\"total_tax\":\"3022.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"43322.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-26 19:20: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\":\"2f8154c6215366402de6c0d95de2a73b6a366953a0319dd871cd3b1482f69217\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-26 18:24:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1411, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"793\",\"date\":\"2023-11-26 19:23:57\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0536\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2122.5000\",\"total_tax\":\"2122.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1521.1300\",\"grand_total\":\"31943.6300\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"1\",\"paid\":\"31943.6300\",\"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\":\"37262df2980cc4bbff10262c5b3b60d03f8e645973a77ec760b9af4fb52dc179\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5587\",\"sale_id\":\"793\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5588\",\"sale_id\":\"793\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5589\",\"sale_id\":\"793\",\"product_id\":\"861\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5590\",\"sale_id\":\"793\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5591\",\"sale_id\":\"793\",\"product_id\":\"1081\",\"product_code\":\"154\",\"product_name\":\"Chrysanthemum Juice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5592\",\"sale_id\":\"793\",\"product_id\":\"1079\",\"product_code\":\"152\",\"product_name\":\"Chivita Active\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"38bc06a5926d0a0e014f39f5132eccf0.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5593\",\"sale_id\":\"793\",\"product_id\":\"1132\",\"product_code\":\"CIG\",\"product_name\":\"Cigarette\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5594\",\"sale_id\":\"793\",\"product_id\":\"1144\",\"product_code\":\"881\",\"product_name\":\"hollanddia yoghurt\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-26 18:35:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1412, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"791\",\"date\":\"2023-11-26 19:18:26\",\"reference_no\":\"SALE2023\\/11\\/0251\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"2175.0000\",\"total_tax\":\"2175.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"31175.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-26 19:49:36\",\"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\":\"ccbf408e08f2e2b388d39952133ed74546f87599d4a4ea4c41a3ad6c2398a0b0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-26 18:50:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1413, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"788\",\"date\":\"2023-11-26 16:56:00\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0534\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"217572.7300\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"2427.2700\",\"order_tax_id\":\"4\",\"order_tax\":\"16500.0000\",\"total_tax\":\"18927.2700\",\"shipping\":\"0.0000\",\"service_charge\":\"11663.7500\",\"grand_total\":\"236500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-26 17:03:40\",\"total_items\":\"56\",\"pos\":\"1\",\"paid\":\"244938.7500\",\"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\":\"25e2faec2901bee07756086b93e2c972f9d06ad5e4540773205b7456a325cf71\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5507\",\"sale_id\":\"788\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5508\",\"sale_id\":\"788\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"3611848ea432ee96dcc15bdd484cc3f8.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5509\",\"sale_id\":\"788\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5510\",\"sale_id\":\"788\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5511\",\"sale_id\":\"788\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5512\",\"sale_id\":\"788\",\"product_id\":\"942\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5513\",\"sale_id\":\"788\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5514\",\"sale_id\":\"788\",\"product_id\":\"857\",\"product_code\":\"2\",\"product_name\":\"Lamb Biryani\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"29700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5515\",\"sale_id\":\"788\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"2427.2700\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":null,\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"SER\",\"tax_name\":\"Service Charge\",\"tax_rate\":\"10.0000\",\"image\":\"8636ba83bb39673eeb3e425e710a8ef8.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5516\",\"sale_id\":\"788\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"15000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5517\",\"sale_id\":\"788\",\"product_id\":\"1052\",\"product_code\":\"125\",\"product_name\":\"Fanta\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"474a8f0fed31ee0cd09aa8a55ee80f35.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5518\",\"sale_id\":\"788\",\"product_id\":\"1053\",\"product_code\":\"126\",\"product_name\":\"Sprite\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"059368d57575666bcae7fb8f4ddbe92d.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5519\",\"sale_id\":\"788\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"6.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-26 18:57:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1414, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"794\",\"date\":\"2023-11-26 19:31:43\",\"reference_no\":\"SALE2023\\/11\\/0253\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"12400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"930.0000\",\"total_tax\":\"930.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"13330.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-26 19:38:40\",\"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\":\"e6150bf56c593b3abd7504db6cff4282b47068780214c1f5a1f5b84f39274a2c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-26 19:05:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1415, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"800\",\"date\":\"2023-11-26 20:16:02\",\"reference_no\":\"SALE2023\\/11\\/0254\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"25300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1897.5000\",\"total_tax\":\"1897.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"27197.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-26 20:30:26\",\"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\":\"5f2dd36ff66d8b540372a06d848763483f2f0dad2c11d1d7bedf84b244f37a0a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-26 20:00:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1416, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"804\",\"date\":\"2023-11-26 21:04:15\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0545\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"51300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3847.5000\",\"total_tax\":\"3847.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"2757.3800\",\"grand_total\":\"57904.8800\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"1\",\"paid\":\"57904.8800\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"804bb8063faafcd22c9a5498bdd25d722b4c317c80cad75d179b1cffe8ab0c91\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5696\",\"sale_id\":\"804\",\"product_id\":\"987\",\"product_code\":\"72\",\"product_name\":\"Carlo Rossi Red\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"b807dac52fabed9eca1aaae624a951d3.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5697\",\"sale_id\":\"804\",\"product_id\":\"1029\",\"product_code\":\"103b\",\"product_name\":\"Olmeca White (shot)\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"c83c9b6996b67560ac6a80bf2319b251.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5698\",\"sale_id\":\"804\",\"product_id\":\"857\",\"product_code\":\"2\",\"product_name\":\"Lamb Biryani\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5699\",\"sale_id\":\"804\",\"product_id\":\"861\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5700\",\"sale_id\":\"804\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5701\",\"sale_id\":\"804\",\"product_id\":\"1145\",\"product_code\":\"880\",\"product_name\":\"shisha\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5702\",\"sale_id\":\"804\",\"product_id\":\"1003\",\"product_code\":\"85\",\"product_name\":\"4th Street White\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8000.0000\",\"unit_price\":\"8000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"161304d0934e5dbe131c488bb023155b.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5703\",\"sale_id\":\"804\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5704\",\"sale_id\":\"804\",\"product_id\":\"1058\",\"product_code\":\"131\",\"product_name\":\"Bullet\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"f70bf11808fbf7ef5e01e5aa1e7875f8.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-26 20:26:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1417, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"792\",\"date\":\"2023-11-26 19:21:00\",\"reference_no\":\"SALE2023\\/11\\/0252\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"70800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"5310.0000\",\"total_tax\":\"5310.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"76110.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"17\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-26 21:02:04\",\"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\":\"e4f115fb60e3bead574f240bddfd9629945341d5eed64e9b0881bb5cf4875482\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-26 21:00:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1418, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"809\",\"date\":\"2023-11-26 21:49:13\",\"reference_no\":\"SALE2023\\/11\\/0256\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"892.5000\",\"total_tax\":\"892.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"12792.5000\",\"sale_status\":\"completed\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"2edd62357accce00e48e9638439e28f5cbf2359bcb4ab53cd6c7c956a46995af\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5721\",\"sale_id\":\"809\",\"product_id\":\"872\",\"product_code\":\"9a\",\"product_name\":\"Stir-fried noodle with soy sauce (chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5722\",\"sale_id\":\"809\",\"product_id\":\"1048\",\"product_code\":\"121\",\"product_name\":\"Chang Beer (Can)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"83c9a467a45a2c503d3a45e594c618c0.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-26 21:02:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1419, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"784\",\"date\":\"2023-11-26 15:27:00\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0531\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"62900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4717.5000\",\"total_tax\":\"4717.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"3380.8800\",\"grand_total\":\"67617.5000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-26 15:28:38\",\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"70998.3800\",\"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\":\"4734060e8c87e732335d1529b566f6c896908458bc2f2c2ee2c488ba43a7c61f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5446\",\"sale_id\":\"784\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5447\",\"sale_id\":\"784\",\"product_id\":\"863\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"15000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5448\",\"sale_id\":\"784\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5449\",\"sale_id\":\"784\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"15000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5450\",\"sale_id\":\"784\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-26 21:06:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1420, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"810\",\"date\":\"2023-11-26 21:57:41\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0549\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"18990.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"1485.0000\",\"total_tax\":\"2294.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"1064.2500\",\"grand_total\":\"22349.2500\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"22349.2500\",\"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\":\"358332d3ad956d8bafaeecc53097febd32eca86a7675c05310fdd784714640a8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5723\",\"sale_id\":\"810\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"SER\",\"tax_name\":\"Service Charge\",\"tax_rate\":\"10.0000\",\"image\":\"8636ba83bb39673eeb3e425e710a8ef8.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5724\",\"sale_id\":\"810\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"5725\",\"sale_id\":\"810\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-26 21:11:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1421, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"813\",\"date\":\"2023-11-26 22:10:59\",\"reference_no\":\"SALE2023\\/11\\/0257\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"592.5000\",\"total_tax\":\"592.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"8492.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"17\",\"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\":\"30263770ea93e491b27a91ae40882be127875de246a1cc70d2e8dc9861cea8b5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-26 21:12:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1422, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"806\",\"date\":\"2023-11-26 21:11:00\",\"reference_no\":\"SALE2023\\/11\\/0255\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2377.5000\",\"total_tax\":\"2377.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"34077.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-26 22:12:39\",\"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\":\"8e2aac50ca08e61691ccb19a8d11082ad9531d89d7fe009ada976f2f8193ca53\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-26 21:35:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1423, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"275\",\"date\":\"2023-11-27 13:42:01\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"40\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"212092.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3623\",\"suspend_id\":\"275\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"18000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3624\",\"suspend_id\":\"275\",\"product_id\":\"1085\",\"product_code\":\"158\",\"product_name\":\"Thai Iced Black Coffee\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3625\",\"suspend_id\":\"275\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3626\",\"suspend_id\":\"275\",\"product_id\":\"1071\",\"product_code\":\"144\",\"product_name\":\"Malibu Sunset\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3627\",\"suspend_id\":\"275\",\"product_id\":\"1093\",\"product_code\":\"166\",\"product_name\":\"Lemon Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3628\",\"suspend_id\":\"275\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3629\",\"suspend_id\":\"275\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"7.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3630\",\"suspend_id\":\"275\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3631\",\"suspend_id\":\"275\",\"product_id\":\"942\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3632\",\"suspend_id\":\"275\",\"product_id\":\"943\",\"product_code\":\"38c\",\"product_name\":\"Fried spring rolls (stuffed with vegetables)\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3633\",\"suspend_id\":\"275\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3634\",\"suspend_id\":\"275\",\"product_id\":\"862\",\"product_code\":\"4d\",\"product_name\":\"Fried rice with beef\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3635\",\"suspend_id\":\"275\",\"product_id\":\"940\",\"product_code\":\"37d\",\"product_name\":\"Spicy chopped meat salad (beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3636\",\"suspend_id\":\"275\",\"product_id\":\"939\",\"product_code\":\"37c\",\"product_name\":\"Spicy chopped meat salad (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3637\",\"suspend_id\":\"275\",\"product_id\":\"897\",\"product_code\":\"18a\",\"product_name\":\"Red curry (chicken)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3638\",\"suspend_id\":\"275\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3639\",\"suspend_id\":\"275\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3640\",\"suspend_id\":\"275\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3641\",\"suspend_id\":\"275\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3642\",\"suspend_id\":\"275\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-27 12:43:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1424, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"817\",\"date\":\"2023-11-27 11:54:00\",\"reference_no\":\"SALE2023\\/11\\/0258\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"187900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"14092.5000\",\"total_tax\":\"14092.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"201992.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-27 13:45:42\",\"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\":\"eb87e19336ff39044f4eca0668b5aff2e94807f139f98cb82222b3bd307ab1a4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-27 13:22:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1425, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"820\",\"date\":\"2023-11-27 16:50:00\",\"reference_no\":\"SALE2023\\/11\\/0259\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2392.5000\",\"total_tax\":\"2392.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"34292.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"2\",\"updated_at\":\"2023-11-27 18:13:36\",\"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\":\"50a40e4a2572e19b337aa75b06276338c553454b8602b55d4736a3d8f00b94e7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-27 17:15:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1426, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"276\",\"date\":\"2023-11-27 18:51:34\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"17\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"100007.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3651\",\"suspend_id\":\"276\",\"product_id\":\"861\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3652\",\"suspend_id\":\"276\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3653\",\"suspend_id\":\"276\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3654\",\"suspend_id\":\"276\",\"product_id\":\"952\",\"product_code\":\"46\",\"product_name\":\"Fried fish with three flavors sauce\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3655\",\"suspend_id\":\"276\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3656\",\"suspend_id\":\"276\",\"product_id\":\"942\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3657\",\"suspend_id\":\"276\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3658\",\"suspend_id\":\"276\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-27 17:58:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1427, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"823\",\"date\":\"2023-11-27 18:41:36\",\"reference_no\":\"SALE2023\\/11\\/0260\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"90790.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"6870.0000\",\"total_tax\":\"7679.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"98470.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-27 18:48:57\",\"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\":\"6db14ed15de2b269432dcbd207118eaea12c53f725893b12af9fd28acb28b29d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-27 17:59:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1428, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"825\",\"date\":\"2023-11-27 19:11:38\",\"reference_no\":\"SALE2023\\/11\\/0261\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1087.5000\",\"total_tax\":\"1087.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"15587.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-27 19:23:13\",\"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\":\"4f5339c589636f03afd34d1cbbff8f26f3ebe5d7ada620e6e1d24aa109f5b94c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-27 19:47:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1429, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"827\",\"date\":\"2023-11-27 22:29:23\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0561\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"630.0000\",\"total_tax\":\"630.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"451.5000\",\"grand_total\":\"9481.5000\",\"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\":\"9481.5000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"efdd12b2ece894e446af4015554751171fe60e3e3fe92b2f035e9e057a111128\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"6021\",\"sale_id\":\"827\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6022\",\"sale_id\":\"827\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-27 21:29:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1430, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"829\",\"date\":\"2023-11-28 13:59:07\",\"reference_no\":\"SALE2023\\/11\\/0263\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2190.0000\",\"total_tax\":\"2190.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"31390.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-28 14:13:33\",\"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\":\"43675711f7ea9e957b14de392b87b76911fad86a3024ac8d3e02b44b1cbddee4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-28 13:36:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1431, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"828\",\"date\":\"2023-11-28 13:38:12\",\"reference_no\":\"SALE2023\\/11\\/0262\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2272.5000\",\"total_tax\":\"2272.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"32572.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-28 13:43:19\",\"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\":\"5916535ec7169a239e7255227be3d4b281811166dde4e32f42d5220bb165197a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-28 13:41:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1432, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"834\",\"date\":\"2023-11-28 16:31:24\",\"reference_no\":\"SALE2023\\/11\\/0264\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"427.5000\",\"total_tax\":\"427.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"6127.5000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-28 16:36: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\":\"760df127cd1822038ea79928742f6512694c35cf927055a97f21a976ff26fda9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"6062\",\"sale_id\":\"834\",\"product_id\":\"1036\",\"product_code\":\"109\",\"product_name\":\"Guiness Stout (Big)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2700.0000\",\"unit_price\":\"2700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"c9970259afee44fbde8dd27570f34b03.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6063\",\"sale_id\":\"834\",\"product_id\":\"1132\",\"product_code\":\"CIG\",\"product_name\":\"Cigarette\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6064\",\"sale_id\":\"834\",\"product_id\":\"1132\",\"product_code\":\"CIG\",\"product_name\":\"Cigarette\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-28 17:17:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1433, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"836\",\"date\":\"2023-11-28 17:24:38\",\"reference_no\":\"SALE2023\\/11\\/0265\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1005.0000\",\"total_tax\":\"1005.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"14405.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-28 17:30:35\",\"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\":\"a85464e59a9e6de1c8d77fc644ed0b29be4359bd4c140a2eb3d6133bb4b6fb42\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-28 17:29:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1434, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"838\",\"date\":\"2023-11-28 18:19:49\",\"reference_no\":\"SALE2023\\/11\\/0266\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"450.0000\",\"total_tax\":\"450.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"6450.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"970c5c729bf06460c1eaf3939effcee68b4e76dbb860a1f75b55afc92999af5f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-28 18:14:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1435, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"277\",\"date\":\"2023-11-28 19:31:35\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"13\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"69756.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"fon\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3659\",\"suspend_id\":\"277\",\"product_id\":\"935\",\"product_code\":\"35c\",\"product_name\":\"Spicy papaya salad (mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3660\",\"suspend_id\":\"277\",\"product_id\":\"945\",\"product_code\":\"39\",\"product_name\":\"Hat Yai-style fried chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3661\",\"suspend_id\":\"277\",\"product_id\":\"1085\",\"product_code\":\"158\",\"product_name\":\"Thai Iced Black Coffee\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3662\",\"suspend_id\":\"277\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3663\",\"suspend_id\":\"277\",\"product_id\":\"858\",\"product_code\":\"3\",\"product_name\":\"Steamed rice topped with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3664\",\"suspend_id\":\"277\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3665\",\"suspend_id\":\"277\",\"product_id\":\"917\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3666\",\"suspend_id\":\"277\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3667\",\"suspend_id\":\"277\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-28 19:00:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1436, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"278\",\"date\":\"2023-11-28 19:33:41\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"13\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"62081.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"peaw\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3668\",\"suspend_id\":\"278\",\"product_id\":\"864\",\"product_code\":\"5\",\"product_name\":\"Tom yum fried rice\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3669\",\"suspend_id\":\"278\",\"product_id\":\"945\",\"product_code\":\"39\",\"product_name\":\"Hat Yai-style fried chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"23700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3670\",\"suspend_id\":\"278\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3671\",\"suspend_id\":\"278\",\"product_id\":\"1085\",\"product_code\":\"158\",\"product_name\":\"Thai Iced Black Coffee\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3672\",\"suspend_id\":\"278\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3673\",\"suspend_id\":\"278\",\"product_id\":\"959\",\"product_code\":\"52\",\"product_name\":\"Sago pearls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3674\",\"suspend_id\":\"278\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3675\",\"suspend_id\":\"278\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-28 19:01:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1437, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"843\",\"date\":\"2023-11-28 22:30:39\",\"reference_no\":\"SALE2023\\/11\\/0267\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1260.0000\",\"total_tax\":\"1260.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"18060.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-28 22:38:01\",\"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\":\"77778a11476e1cd2c478512e70a208eb9771faed370c3f7e5393a2ad915b2c4c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-28 21:40:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1438, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"845\",\"date\":\"2023-11-29 13:27:12\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0573\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1507.5000\",\"total_tax\":\"1507.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1080.3800\",\"grand_total\":\"22687.8800\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"22687.8800\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"d38d9426713d13ab08f99fe3424da69fffeb904040286b375c5f316151433a24\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"6103\",\"sale_id\":\"845\",\"product_id\":\"931\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6104\",\"sale_id\":\"845\",\"product_id\":\"897\",\"product_code\":\"18a\",\"product_name\":\"Red curry (chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6105\",\"sale_id\":\"845\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-29 12:46:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1439, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"279\",\"date\":\"2023-11-29 13:48:57\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"24945.3800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3676\",\"suspend_id\":\"279\",\"product_id\":\"931\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3677\",\"suspend_id\":\"279\",\"product_id\":\"897\",\"product_code\":\"18a\",\"product_name\":\"Red curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3678\",\"suspend_id\":\"279\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-29 13:21:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1440, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"848\",\"date\":\"2023-11-29 14:21:53\",\"reference_no\":\"SALE2023\\/11\\/0269\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1560.0000\",\"total_tax\":\"1560.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"22360.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-11-29 14:24:30\",\"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\":\"d4b9545f384687b510b28c0955d2687c7a41756798b38752695c94ef9f410689\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-29 13:30:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1441, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"281\",\"date\":\"2023-11-29 18:19:20\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"3047.6300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3687\",\"suspend_id\":\"281\",\"product_id\":\"1036\",\"product_code\":\"109\",\"product_name\":\"Guiness Stout (Big)\",\"net_unit_price\":\"2700.0000\",\"unit_price\":\"2700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2700.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-29 17:20:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1442, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"851\",\"date\":\"2023-11-29 17:44:45\",\"reference_no\":\"SALE2023\\/11\\/0270\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"45290.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"3457.5000\",\"total_tax\":\"4266.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"49557.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"1f46df8f6b8e3302813a7b3a41e0c5c96dac61c353bcd71c052e85688dcf4de2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-29 17:51:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1443, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"280\",\"date\":\"2023-11-29 18:18:41\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"51471.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3679\",\"suspend_id\":\"280\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3680\",\"suspend_id\":\"280\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3681\",\"suspend_id\":\"280\",\"product_id\":\"937\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3682\",\"suspend_id\":\"280\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3683\",\"suspend_id\":\"280\",\"product_id\":\"1093\",\"product_code\":\"166\",\"product_name\":\"Lemon Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3684\",\"suspend_id\":\"280\",\"product_id\":\"1096\",\"product_code\":\"169\",\"product_name\":\"Tropical Storm\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3685\",\"suspend_id\":\"280\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3686\",\"suspend_id\":\"280\",\"product_id\":\"1075\",\"product_code\":\"148\",\"product_name\":\"Chocolate Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-29 17:51:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1444, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"852\",\"date\":\"2023-11-29 17:59:34\",\"reference_no\":\"SALE2023\\/11\\/0271\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"202.5000\",\"total_tax\":\"202.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"2902.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"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\":\"cc07c8a9e75726d41041e99452dfcbc92a2952db090434fcac34fcfd8b92c50d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-30 09:00:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1445, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"846\",\"date\":\"2023-11-29 13:46:53\",\"reference_no\":\"SALE2023\\/11\\/0268\",\"customer_id\":\"39\",\"customer\":\"VIP 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1260.0000\",\"total_tax\":\"1260.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"18060.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"031b3fb6350dd3702e12be2cbd340e59df6865e74d21650dfdec0efc47fa6089\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-30 09:01:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1446, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"283\",\"date\":\"2023-11-30 12:30:38\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"30137.6300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3690\",\"suspend_id\":\"283\",\"product_id\":\"884\",\"product_code\":\"12\",\"product_name\":\"Baked shrimp with glass noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3691\",\"suspend_id\":\"283\",\"product_id\":\"861\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3692\",\"suspend_id\":\"283\",\"product_id\":\"934\",\"product_code\":\"35b\",\"product_name\":\"Spicy papaya salad (fermented fish)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3693\",\"suspend_id\":\"283\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3694\",\"suspend_id\":\"283\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-30 11:42:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1447, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"855\",\"date\":\"2023-11-30 12:10:57\",\"reference_no\":\"SALE2023\\/11\\/0272\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2002.5000\",\"total_tax\":\"2002.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"28702.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-11-30 12:13:51\",\"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\":\"b6cf33f6c4a9da38e129e7ab24a02fbc6c7a8fd09418cc0b33861e69abae7c5f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-30 12:22:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1448, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"858\",\"date\":\"2023-11-30 14:02:31\",\"reference_no\":\"SALE2023\\/11\\/0273\",\"customer_id\":\"18\",\"customer\":\"Table 15\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"187.5000\",\"total_tax\":\"187.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"2687.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"fc0180fe09d7d2bef101d865edb6cf729a44d25e08bfa59819a389131823130e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-30 13:03:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1449, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"859\",\"date\":\"2023-11-30 18:51:01\",\"reference_no\":\"SALE2023\\/11\\/0274\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"450.0000\",\"total_tax\":\"450.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"6450.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-30 19:01:18\",\"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\":\"628f711fb5096864e779c4852e9c6212a46c3c7922037ea6e9430d4ca0165e5b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-30 18:07:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1450, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"284\",\"date\":\"2023-11-30 18:56:40\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"24042.3800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3695\",\"suspend_id\":\"284\",\"product_id\":\"941\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3696\",\"suspend_id\":\"284\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3697\",\"suspend_id\":\"284\",\"product_id\":\"917\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-30 18:39:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1451, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"288\",\"date\":\"2023-11-30 20:27:52\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"19075.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3 1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3751\",\"suspend_id\":\"288\",\"product_id\":\"861\",\"product_code\":\"4c\",\"product_name\":\"Fried rice with seafood\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3752\",\"suspend_id\":\"288\",\"product_id\":\"1075\",\"product_code\":\"148\",\"product_name\":\"Chocolate Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3753\",\"suspend_id\":\"288\",\"product_id\":\"941\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3754\",\"suspend_id\":\"288\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-30 19:35:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1452, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"285\",\"date\":\"2023-11-30 20:27:35\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"19640.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3746\",\"suspend_id\":\"285\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3747\",\"suspend_id\":\"285\",\"product_id\":\"920\",\"product_code\":\"27d\",\"product_name\":\"Stir-fried with holy basil (mixed meat)\",\"net_unit_price\":\"10400.0000\",\"unit_price\":\"10400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10400.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10400.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3748\",\"suspend_id\":\"285\",\"product_id\":\"1096\",\"product_code\":\"169\",\"product_name\":\"Tropical Storm\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3749\",\"suspend_id\":\"285\",\"product_id\":\"1064\",\"product_code\":\"137\",\"product_name\":\"Mojito\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3750\",\"suspend_id\":\"285\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-30 19:36:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1453, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"861\",\"date\":\"2023-11-30 19:17:49\",\"reference_no\":\"SALE2023\\/11\\/0275\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2887.5000\",\"total_tax\":\"2887.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"41387.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-11-30 20:23:09\",\"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\":\"7b7fb5e39f040aa23076d5877697068a275acfa3d57b3f70e788cac34bad7de3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-30 19:37:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1454, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"289\",\"date\":\"2023-11-30 20:26:48\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"12867.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3 2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3740\",\"suspend_id\":\"289\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3741\",\"suspend_id\":\"289\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3742\",\"suspend_id\":\"289\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-30 19:39:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1455, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"290\",\"date\":\"2023-11-30 20:27:24\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"12867.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3 3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3743\",\"suspend_id\":\"290\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3744\",\"suspend_id\":\"290\",\"product_id\":\"1075\",\"product_code\":\"148\",\"product_name\":\"Chocolate Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3745\",\"suspend_id\":\"290\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-30 19:41:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1456, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"864\",\"date\":\"2023-11-30 19:51:00\",\"reference_no\":\"SALE2023\\/11\\/0277\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"57100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4282.5000\",\"total_tax\":\"4282.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"61382.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"3\",\"updated_at\":\"2023-11-30 20:14:27\",\"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\":\"7b0a00531c4d1f312775ab71da661f74ee924f5e005abf7299efe00f23d3b5b8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-11-30 19:52:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1457, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"286\",\"date\":\"2023-11-30 20:17:50\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"40070.6300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3717\",\"suspend_id\":\"286\",\"product_id\":\"952\",\"product_code\":\"46\",\"product_name\":\"Fried fish with three flavors sauce\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"20000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3718\",\"suspend_id\":\"286\",\"product_id\":\"1145\",\"product_code\":\"880\",\"product_name\":\"shisha\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3719\",\"suspend_id\":\"286\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3720\",\"suspend_id\":\"286\",\"product_id\":\"1003\",\"product_code\":\"85\",\"product_name\":\"4th Street White\",\"net_unit_price\":\"8000.0000\",\"unit_price\":\"8000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3721\",\"suspend_id\":\"286\",\"product_id\":\"1058\",\"product_code\":\"131\",\"product_name\":\"Bullet\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-30 19:57:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1458, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"871\",\"date\":\"2023-11-30 20:57:40\",\"reference_no\":\"SALE\\/POS2023\\/11\\/0589\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"35500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2662.5000\",\"total_tax\":\"2662.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1908.1300\",\"grand_total\":\"40070.6300\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"1\",\"paid\":\"40070.6300\",\"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\":\"f6ad8746d6bda8f8a56644b9aca9977d6ae8776d1ef2530a8604b79bbde2e60e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"6260\",\"sale_id\":\"871\",\"product_id\":\"952\",\"product_code\":\"46\",\"product_name\":\"Fried fish with three flavors sauce\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"20000.0000\",\"unit_price\":\"20000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"20000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"20000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6261\",\"sale_id\":\"871\",\"product_id\":\"1145\",\"product_code\":\"880\",\"product_name\":\"shisha\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6262\",\"sale_id\":\"871\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6263\",\"sale_id\":\"871\",\"product_id\":\"1003\",\"product_code\":\"85\",\"product_name\":\"4th Street White\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8000.0000\",\"unit_price\":\"8000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"161304d0934e5dbe131c488bb023155b.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6264\",\"sale_id\":\"871\",\"product_id\":\"1058\",\"product_code\":\"131\",\"product_name\":\"Bullet\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"f70bf11808fbf7ef5e01e5aa1e7875f8.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-11-30 19:58:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1459, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"287\",\"date\":\"2023-11-30 20:58:50\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"26299.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"VIP1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3755\",\"suspend_id\":\"287\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3756\",\"suspend_id\":\"287\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3757\",\"suspend_id\":\"287\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3758\",\"suspend_id\":\"287\",\"product_id\":\"1091\",\"product_code\":\"164\",\"product_name\":\"Water Melon Juice\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-11-30 20:21:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1460, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"875\",\"date\":\"2023-12-01 14:14:14\",\"reference_no\":\"SALE2023\\/12\\/0278\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2385.0000\",\"total_tax\":\"2385.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"34185.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"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\":\"f72ae31f7b1ff917a4d92da5508160c99335461e2d9c81abe202ba075b2e3448\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-01 13:45:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1461, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"282\",\"date\":\"2023-11-29 18:20:18\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"18963.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"VIP2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3688\",\"suspend_id\":\"282\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3689\",\"suspend_id\":\"282\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-01 13:46:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1462, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"878\",\"date\":\"2023-12-01 14:51:54\",\"reference_no\":\"SALE2023\\/12\\/0279\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"33700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2527.5000\",\"total_tax\":\"2527.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"36227.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-12-01 15:24:38\",\"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\":\"6e6b05ebad1d3d7d725e0a2c0a3cee0e9a71b1a841be8ed63ba30b2c95825cf1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-01 14:30:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1463, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"291\",\"date\":\"2023-12-01 18:33:58\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"34201.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3759\",\"suspend_id\":\"291\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3760\",\"suspend_id\":\"291\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3761\",\"suspend_id\":\"291\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3762\",\"suspend_id\":\"291\",\"product_id\":\"1066\",\"product_code\":\"139\",\"product_name\":\"Mai Tai\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3763\",\"suspend_id\":\"291\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-01 17:36:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1464, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"881\",\"date\":\"2023-12-01 18:08:58\",\"reference_no\":\"SALE2023\\/12\\/0280\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2272.5000\",\"total_tax\":\"2272.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"32572.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":\"18\",\"updated_at\":\"2023-12-01 18:21:35\",\"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\":\"1c788af6aefcc39b0b62ab41d7aabdb6ea5136a5916e48452761bd78b1f2960b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-01 17:41:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1465, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"883\",\"date\":\"2023-12-01 18:46:00\",\"reference_no\":\"SALE2023\\/12\\/0281\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"69100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"5182.5000\",\"total_tax\":\"5182.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"74282.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"2\",\"updated_at\":\"2023-12-01 19:38:47\",\"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\":\"e472eb4bad39b93cb83da6296f542e8abb184c1cf602c15aedf2b01ded4d49a7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-01 18:40:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1466, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"292\",\"date\":\"2023-12-01 18:53:12\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"57001.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"apple\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3764\",\"suspend_id\":\"292\",\"product_id\":\"1008\",\"product_code\":\"90\",\"product_name\":\"Hennessy Vs\",\"net_unit_price\":\"50000.0000\",\"unit_price\":\"50000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"50000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3765\",\"suspend_id\":\"292\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-01 20:10:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1467, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"862\",\"date\":\"2023-11-30 19:37:23\",\"reference_no\":\"SALE2023\\/11\\/0276\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"22990.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"1785.0000\",\"total_tax\":\"2594.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"25585.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-11-30 20:15:17\",\"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\":\"25d4b9ac79bcdc3b6a0d27767ec4b92426358a44f905effa30a1ea8a806623f0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-02 11:14:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1468, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"891\",\"date\":\"2023-12-02 11:59:00\",\"reference_no\":\"SALE2023\\/12\\/0282\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"48600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3645.0000\",\"total_tax\":\"3645.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"52245.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-12-02 12:09:05\",\"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\":\"0a2a15bb5416a15070590ffeab1a0e87dffeee9bb5cdf74409771e9c36d7bd4f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-02 11:49:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1469, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"894\",\"date\":\"2023-12-02 17:24:47\",\"reference_no\":\"SALE2023\\/12\\/0283\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"46400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3480.0000\",\"total_tax\":\"3480.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"49880.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-12-02 17:26:36\",\"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\":\"24c1b4b5b0637ca62fa612c8ab7122b261f47db75d993a29aad22d9654b557dd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-02 17:04:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1470, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"896\",\"date\":\"2023-12-02 18:13:39\",\"reference_no\":\"SALE2023\\/12\\/0284\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"40100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3007.5000\",\"total_tax\":\"3007.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"43107.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"ab10b446f06aa9527ddf21cb0e7eef7bbc967cdab26ef5c772301b366e50cf9e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-02 17:55:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1471, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"897\",\"date\":\"2023-12-02 18:56:00\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0608\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"43400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3255.0000\",\"total_tax\":\"3255.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"2252.1300\",\"grand_total\":\"46655.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":\"2\",\"updated_at\":\"2023-12-02 18:58:25\",\"total_items\":\"10\",\"pos\":\"1\",\"paid\":\"47294.6300\",\"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\":\"40460880230d3e0e4dfc4e2fa2ccee30125c578dadc306105a79840fc31999d1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"6465\",\"sale_id\":\"897\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6466\",\"sale_id\":\"897\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6467\",\"sale_id\":\"897\",\"product_id\":\"894\",\"product_code\":\"17b\",\"product_name\":\"Green curry (beef)\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6468\",\"sale_id\":\"897\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6469\",\"sale_id\":\"897\",\"product_id\":\"1046\",\"product_code\":\"119\",\"product_name\":\"Throphy Beer\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1800.0000\",\"unit_price\":\"1800.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1800.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"bd260bb947be216824f1a80a8252d5b8.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6470\",\"sale_id\":\"897\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6471\",\"sale_id\":\"897\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"6472\",\"sale_id\":\"897\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-02 18:01:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1472, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"293\",\"date\":\"2023-12-02 19:04:41\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"10610.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3766\",\"suspend_id\":\"293\",\"product_id\":\"880\",\"product_code\":\"11a\",\"product_name\":\"Noodles in gravy sauce (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3767\",\"suspend_id\":\"293\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-02 18:52:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1473, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"899\",\"date\":\"2023-12-02 19:48:00\",\"reference_no\":\"SALE2023\\/12\\/0285\",\"customer_id\":\"37\",\"customer\":\"Table 18\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21990.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"1710.0000\",\"total_tax\":\"2519.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"24510.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"2\",\"updated_at\":\"2023-12-02 19:53:51\",\"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\":\"04ec67c0b18c674a53df6c83e2b45b8df8fdbc7e5f2384a31ad482d1b461d10d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-02 19:26:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1474, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"294\",\"date\":\"2023-12-02 20:30:57\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"36345.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"fon\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3768\",\"suspend_id\":\"294\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3769\",\"suspend_id\":\"294\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3770\",\"suspend_id\":\"294\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3771\",\"suspend_id\":\"294\",\"product_id\":\"872\",\"product_code\":\"9a\",\"product_name\":\"Stir-fried noodle with soy sauce (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3772\",\"suspend_id\":\"294\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"5.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-02 20:12:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1475, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"295\",\"date\":\"2023-12-02 22:36:46\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"14\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"79012.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3773\",\"suspend_id\":\"295\",\"product_id\":\"914\",\"product_code\":\"24d\",\"product_name\":\"Tom Yum (seafood\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3774\",\"suspend_id\":\"295\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3775\",\"suspend_id\":\"295\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3776\",\"suspend_id\":\"295\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3777\",\"suspend_id\":\"295\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3778\",\"suspend_id\":\"295\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-02 21:38:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1476, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"903\",\"date\":\"2023-12-02 21:34:51\",\"reference_no\":\"SALE2023\\/12\\/0286\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"23800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1785.0000\",\"total_tax\":\"1785.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"25585.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-12-02 21:48:53\",\"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\":\"af593443d40a300a6ae7f73be0d6c013d76955a44d289a85d96ab8b3c6b8c7a7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-02 21:44:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1477, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"906\",\"date\":\"2023-12-03 11:59:48\",\"reference_no\":\"SALE2023\\/12\\/0287\",\"customer_id\":\"22\",\"customer\":\"Table 19\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"21800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1635.0000\",\"total_tax\":\"1635.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"23435.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-03 12:24:31\",\"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\":\"65a5fb74268b92339d10a20ba962801fb3ac9935abebc184a028ec754815c69c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 11:27:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1478, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"907\",\"date\":\"2023-12-03 12:12:00\",\"reference_no\":\"SALE2023\\/12\\/0288\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"37200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2790.0000\",\"total_tax\":\"2790.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"39990.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-03 12:49:31\",\"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\":\"1597bc59f7e79b48de2d5fd36f060c0fe92a0594c1028c158b235464d569d8a7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 12:20:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1479, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"296\",\"date\":\"2023-12-03 12:52:06\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"36910.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3779\",\"suspend_id\":\"296\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3780\",\"suspend_id\":\"296\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3781\",\"suspend_id\":\"296\",\"product_id\":\"1053\",\"product_code\":\"126\",\"product_name\":\"Sprite\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3782\",\"suspend_id\":\"296\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3783\",\"suspend_id\":\"296\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3784\",\"suspend_id\":\"296\",\"product_id\":\"1148\",\"product_code\":\"872\",\"product_name\":\"Boiled and spicy\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3785\",\"suspend_id\":\"296\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-03 12:20:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1480, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"297\",\"date\":\"2023-12-03 13:22:09\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"16\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"82173.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3817\",\"suspend_id\":\"297\",\"product_id\":\"911\",\"product_code\":\"24\",\"product_name\":\"Tom Yum (shrimp\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3818\",\"suspend_id\":\"297\",\"product_id\":\"915\",\"product_code\":\"25\",\"product_name\":\"Boiled chicken in fish sauce\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3819\",\"suspend_id\":\"297\",\"product_id\":\"926\",\"product_code\":\"30\",\"product_name\":\"Stir-fried mixed vegetables\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3820\",\"suspend_id\":\"297\",\"product_id\":\"936\",\"product_code\":\"36\",\"product_name\":\"Spicy mixed seafood salad\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3821\",\"suspend_id\":\"297\",\"product_id\":\"931\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3822\",\"suspend_id\":\"297\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3823\",\"suspend_id\":\"297\",\"product_id\":\"942\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3824\",\"suspend_id\":\"297\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3825\",\"suspend_id\":\"297\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3826\",\"suspend_id\":\"297\",\"product_id\":\"1048\",\"product_code\":\"121\",\"product_name\":\"Chang Beer (Can)\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3827\",\"suspend_id\":\"297\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3828\",\"suspend_id\":\"297\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-03 12:28:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1481, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"298\",\"date\":\"2023-12-03 13:38:56\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"12\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"72804.3800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3845\",\"suspend_id\":\"298\",\"product_id\":\"934\",\"product_code\":\"35b\",\"product_name\":\"Spicy papaya salad (fermented fish)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3846\",\"suspend_id\":\"298\",\"product_id\":\"935\",\"product_code\":\"35c\",\"product_name\":\"Spicy papaya salad (mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3847\",\"suspend_id\":\"298\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3848\",\"suspend_id\":\"298\",\"product_id\":\"1047\",\"product_code\":\"120\",\"product_name\":\"Chang Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3849\",\"suspend_id\":\"298\",\"product_id\":\"937\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3850\",\"suspend_id\":\"298\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3851\",\"suspend_id\":\"298\",\"product_id\":\"1148\",\"product_code\":\"872\",\"product_name\":\"Boiled and spicy\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3852\",\"suspend_id\":\"298\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-03 12:53:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1482, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"915\",\"date\":\"2023-12-03 16:00:52\",\"reference_no\":\"SALE2023\\/12\\/0291\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"41700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3127.5000\",\"total_tax\":\"3127.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"44827.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"ecde639602fef9e43032cb29786d3bb475f1d1d0573aecf4524548699aebdc85\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 15:41:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1483, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"917\",\"date\":\"2023-12-03 17:14:08\",\"reference_no\":\"SALE2023\\/12\\/0292\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"487.5000\",\"total_tax\":\"487.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"6987.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-03 17:44: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\":\"cbb28a68eaa160ee306f870fb36965b8418ade7bd835c4b35417edbbf563626b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 17:05:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1484, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"909\",\"date\":\"2023-12-03 12:28:00\",\"reference_no\":\"SALE2023\\/12\\/0289\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"84100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"6307.5000\",\"total_tax\":\"6307.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"90407.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"2\",\"updated_at\":\"2023-12-03 13:25:32\",\"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\":\"df3dbf10ce099a58e177dbd7709b503b02a3de83dd8b1df1f855479acb9b5087\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 18:14:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1485, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"920\",\"date\":\"2023-12-03 18:17:09\",\"reference_no\":\"SALE2023\\/12\\/0293\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"44900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3367.5000\",\"total_tax\":\"3367.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"48267.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":\"18\",\"updated_at\":\"2023-12-03 19:44:29\",\"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\":\"7e9df235f6b2304f9c02ed6337ddb7cb871a523d37e9603256713a0ace98a60a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 18:51:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1486, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"923\",\"date\":\"2023-12-03 19:23:31\",\"reference_no\":\"SALE2023\\/12\\/0296\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"562.5000\",\"total_tax\":\"562.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"8062.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":\"18\",\"updated_at\":\"2023-12-03 19:39:38\",\"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\":\"aab2e7576abf4d9ab902e48c4f86c0769350fa92d97bbd2aeabfb2621a7fe30c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 19:14:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1487, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"921\",\"date\":\"2023-12-03 19:09:25\",\"reference_no\":\"SALE2023\\/12\\/0294\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"86300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"6472.5000\",\"total_tax\":\"6472.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"92772.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-12-03 21:10:58\",\"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\":\"59b79782be345ce4a139788b027c9f41c19d25379adbca5ad153359b5d7fe2e7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 20:10:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1488, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"300\",\"date\":\"2023-12-03 20:43:06\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"12\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"91767.3800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3898\",\"suspend_id\":\"300\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3899\",\"suspend_id\":\"300\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3900\",\"suspend_id\":\"300\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3901\",\"suspend_id\":\"300\",\"product_id\":\"908\",\"product_code\":\"21c\",\"product_name\":\"Massaman Curry (lamb)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3902\",\"suspend_id\":\"300\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3903\",\"suspend_id\":\"300\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3904\",\"suspend_id\":\"300\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3905\",\"suspend_id\":\"300\",\"product_id\":\"980\",\"product_code\":\"68\",\"product_name\":\"Black Label\",\"net_unit_price\":\"27000.0000\",\"unit_price\":\"27000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"27000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"27000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3906\",\"suspend_id\":\"300\",\"product_id\":\"1057\",\"product_code\":\"130\",\"product_name\":\"Redbull\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3907\",\"suspend_id\":\"300\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3908\",\"suspend_id\":\"300\",\"product_id\":\"942\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-03 20:11:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1489, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"928\",\"date\":\"2023-12-03 20:21:27\",\"reference_no\":\"SALE2023\\/12\\/0297\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1005.0000\",\"total_tax\":\"1005.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"14405.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-12-03 20:34:49\",\"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\":\"f121f736b0be28008a533b9d09283a07f2fa468bf90bf82c011b387839806424\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 20:26:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1490, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"302\",\"date\":\"2023-12-03 20:40:29\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"15125.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3892\",\"suspend_id\":\"302\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3893\",\"suspend_id\":\"302\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3894\",\"suspend_id\":\"302\",\"product_id\":\"1042\",\"product_code\":\"115\",\"product_name\":\"Origin Bitters (75)\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3895\",\"suspend_id\":\"302\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-03 20:29:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1491, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"910\",\"date\":\"2023-12-03 13:05:00\",\"reference_no\":\"SALE2023\\/12\\/0290\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"69000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"5175.0000\",\"total_tax\":\"5175.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"74175.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"2\",\"updated_at\":\"2023-12-03 13:26:53\",\"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\":\"ee9fc93a2eaed0a29c1d3ef2362c7a2c90d36780fb73492b5f3537417cf57cd8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 20:38:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1492, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"303\",\"date\":\"2023-12-03 21:10:11\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"21220.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"Take away\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3909\",\"suspend_id\":\"303\",\"product_id\":\"872\",\"product_code\":\"9a\",\"product_name\":\"Stir-fried noodle with soy sauce (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3910\",\"suspend_id\":\"303\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-03 20:39:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1493, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"929\",\"date\":\"2023-12-03 20:31:54\",\"reference_no\":\"SALE2023\\/12\\/0298\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"38800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2910.0000\",\"total_tax\":\"2910.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"41710.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":\"18\",\"updated_at\":\"2023-12-03 21:30:50\",\"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\":\"084a74e22296cdba7dbdf599055be1f31fb1c3b6876c3d9b9e6d9fb6bd3f5891\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 20:44:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1494, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"301\",\"date\":\"2023-12-03 21:35:57\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"43795.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3919\",\"suspend_id\":\"301\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3920\",\"suspend_id\":\"301\",\"product_id\":\"1126\",\"product_code\":\"996\",\"product_name\":\"HOT TEA\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3921\",\"suspend_id\":\"301\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3922\",\"suspend_id\":\"301\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3923\",\"suspend_id\":\"301\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3924\",\"suspend_id\":\"301\",\"product_id\":\"1132\",\"product_code\":\"CIG\",\"product_name\":\"Cigarette\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-03 20:44:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1495, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"922\",\"date\":\"2023-12-03 19:12:00\",\"reference_no\":\"SALE2023\\/12\\/0295\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"139200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"10440.0000\",\"total_tax\":\"10440.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"149640.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"2\",\"updated_at\":\"2023-12-03 21:37:14\",\"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\":\"6210fc4d9b3d49dfc32a5071bad493af9f828d012addb0d874eb148b63ed5ab3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 20:59:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1496, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"299\",\"date\":\"2023-12-03 21:50:00\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"12\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"157122.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3925\",\"suspend_id\":\"299\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3926\",\"suspend_id\":\"299\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3927\",\"suspend_id\":\"299\",\"product_id\":\"960\",\"product_code\":\"53\",\"product_name\":\"Glutinous rice balls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3928\",\"suspend_id\":\"299\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3929\",\"suspend_id\":\"299\",\"product_id\":\"1010\",\"product_code\":\"92\",\"product_name\":\"Regency Vsop\",\"net_unit_price\":\"85000.0000\",\"unit_price\":\"85000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"85000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"85000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3930\",\"suspend_id\":\"299\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3931\",\"suspend_id\":\"299\",\"product_id\":\"1150\",\"product_code\":\"870\",\"product_name\":\"egg\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3932\",\"suspend_id\":\"299\",\"product_id\":\"1087\",\"product_code\":\"160\",\"product_name\":\"Milk Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-03 20:59:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1497, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"937\",\"date\":\"2023-12-03 22:09:12\",\"reference_no\":\"SALE2023\\/12\\/0299\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"35000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2625.0000\",\"total_tax\":\"2625.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"37625.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"70f5053d3f708b9601ef8b19e2a7d366ab58e9ef94ec2dd058ef4afe20e5c1a2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-03 21:36:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1498, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"940\",\"date\":\"2023-12-04 11:47:51\",\"reference_no\":\"SALE2023\\/12\\/0300\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"47600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3570.0000\",\"total_tax\":\"3570.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"51170.0000\",\"sale_status\":\"pending\",\"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\":\"df4bd8e6e8458574569d2e36949f21ad9332662e7013af871d22f7633bc726ce\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-04 11:46:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1499, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"942\",\"date\":\"2023-12-04 13:45:10\",\"reference_no\":\"SALE2023\\/12\\/0301\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"41700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3127.5000\",\"total_tax\":\"3127.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"44827.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-12-04 14:29:42\",\"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\":\"b024d0a86f45bf0f2533bfa271cccc7699f5ad2a3001fd241dbb7a0295dd6615\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-04 13:30:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1500, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"304\",\"date\":\"2023-12-04 14:29:36\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"41989.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3939\",\"suspend_id\":\"304\",\"product_id\":\"891\",\"product_code\":\"15c\",\"product_name\":\"Noodles (Tom Yum)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3940\",\"suspend_id\":\"304\",\"product_id\":\"892\",\"product_code\":\"16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3941\",\"suspend_id\":\"304\",\"product_id\":\"935\",\"product_code\":\"35c\",\"product_name\":\"Spicy papaya salad (mixed ingrediets)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3942\",\"suspend_id\":\"304\",\"product_id\":\"1082\",\"product_code\":\"155\",\"product_name\":\"Roselle Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3943\",\"suspend_id\":\"304\",\"product_id\":\"1081\",\"product_code\":\"154\",\"product_name\":\"Chrysanthemum Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3944\",\"suspend_id\":\"304\",\"product_id\":\"960\",\"product_code\":\"53\",\"product_name\":\"Glutinous rice balls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3945\",\"suspend_id\":\"304\",\"product_id\":\"1134\",\"product_code\":\"ICH\",\"product_name\":\"Ichitan green\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-04 13:31:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1501, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"944\",\"date\":\"2023-12-04 15:51:36\",\"reference_no\":\"SALE2023\\/12\\/0302\",\"customer_id\":\"30\",\"customer\":\"Table 10\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"412.5000\",\"total_tax\":\"412.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"5912.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-12-04 16:33:48\",\"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\":\"9466864dba5eab1d06773839f98a5c09a5834617daceaec125e078404973ddf4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-04 15:52:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1502, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"946\",\"date\":\"2023-12-04 18:04:48\",\"reference_no\":\"SALE2023\\/12\\/0303\",\"customer_id\":\"39\",\"customer\":\"VIP 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"187.5000\",\"total_tax\":\"187.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"2687.5000\",\"sale_status\":\"pending\",\"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\":\"9525fb3082a1efd4eaa2cb3332067305c8e08ce9de75b210eb3485574dae510a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-04 17:07:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1503, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"306\",\"date\":\"2023-12-04 18:05:02\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"4515.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"paerw\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3947\",\"suspend_id\":\"306\",\"product_id\":\"1087\",\"product_code\":\"160\",\"product_name\":\"Milk Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-04 17:53:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1504, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"948\",\"date\":\"2023-12-04 18:50:13\",\"reference_no\":\"SALE2023\\/12\\/0304\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1042.5000\",\"total_tax\":\"1042.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"14942.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-12-04 18:55:24\",\"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\":\"3787fd244d66f384b6c59d52fa26da984a64d8465b95b5657e0a469db23c7df7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-04 18:23:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1505, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"953\",\"date\":\"2023-12-04 19:57:56\",\"reference_no\":\"SALE2023\\/12\\/0307\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30090.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2317.5000\",\"total_tax\":\"3126.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"33217.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-12-04 20:26:21\",\"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\":\"91aae98c549655f1fe67cb84e45a617a30c40617096fe916e3d42249444de3a5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-04 19:27:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1506, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"950\",\"date\":\"2023-12-04 19:18:52\",\"reference_no\":\"SALE2023\\/12\\/0305\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"3\",\"order_tax\":\"1190.0000\",\"total_tax\":\"1190.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"13090.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-12-04 20:29:35\",\"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\":\"6a350e04fbe92e33d0842a2686cdb9966fb7c0bd9aeb0520a22c05d2ec3f8e79\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-04 19:30:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1507, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"952\",\"date\":\"2023-12-04 19:52:00\",\"reference_no\":\"SALE2023\\/12\\/0306\",\"customer_id\":\"31\",\"customer\":\"Table 11\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"412.5000\",\"total_tax\":\"412.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"5912.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"2\",\"updated_at\":\"2023-12-04 19:54:50\",\"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\":\"2e10baacfdd8035ae761b0426d0e9bf5d8262a6c55a4aefef4574b704eac3011\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-04 19:33:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1508, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"305\",\"date\":\"2023-12-04 18:04:39\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"4515.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"fon\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3946\",\"suspend_id\":\"305\",\"product_id\":\"1085\",\"product_code\":\"158\",\"product_name\":\"Thai Iced Black Coffee\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-04 20:56:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1509, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"958\",\"date\":\"2023-12-05 12:08:37\",\"reference_no\":\"SALE2023\\/12\\/0308\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"136000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"10200.0000\",\"total_tax\":\"10200.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"146200.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-12-05 13:07:18\",\"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\":\"9c522b81ad8d39aba20970723356b4d7ea555e332daa45d671637dcadedbac7a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-05 12:20:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1510, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"307\",\"date\":\"2023-12-05 13:14:07\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"25\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"153510.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3948\",\"suspend_id\":\"307\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3949\",\"suspend_id\":\"307\",\"product_id\":\"1053\",\"product_code\":\"126\",\"product_name\":\"Sprite\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3950\",\"suspend_id\":\"307\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3951\",\"suspend_id\":\"307\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3952\",\"suspend_id\":\"307\",\"product_id\":\"898\",\"product_code\":\"18b\",\"product_name\":\"Red curry (beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3953\",\"suspend_id\":\"307\",\"product_id\":\"931\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3954\",\"suspend_id\":\"307\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3955\",\"suspend_id\":\"307\",\"product_id\":\"942\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"11000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3956\",\"suspend_id\":\"307\",\"product_id\":\"947\",\"product_code\":\"41\",\"product_name\":\"Fried squid\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3957\",\"suspend_id\":\"307\",\"product_id\":\"913\",\"product_code\":\"24c\",\"product_name\":\"Tom Yum (seafood\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3958\",\"suspend_id\":\"307\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3959\",\"suspend_id\":\"307\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3960\",\"suspend_id\":\"307\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3961\",\"suspend_id\":\"307\",\"product_id\":\"891\",\"product_code\":\"15c\",\"product_name\":\"Noodles (Tom Yum)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3962\",\"suspend_id\":\"307\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3963\",\"suspend_id\":\"307\",\"product_id\":\"1087\",\"product_code\":\"160\",\"product_name\":\"Milk Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3964\",\"suspend_id\":\"307\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-05 12:21:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1511, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"959\",\"date\":\"2023-12-05 12:59:53\",\"reference_no\":\"SALE2023\\/12\\/0309\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"41790.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"3195.0000\",\"total_tax\":\"4004.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"45795.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-05 13:34:33\",\"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\":\"88f384e44d806c8f7e04ad88a9bebce36a0b859f439347c7bf8822493906a2b9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-05 12:42:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1512, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"308\",\"date\":\"2023-12-05 13:15:56\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"47520.3800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"3965\",\"suspend_id\":\"308\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3966\",\"suspend_id\":\"308\",\"product_id\":\"892\",\"product_code\":\"16\",\"product_name\":\"Noodles in red tofu clear soup\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3967\",\"suspend_id\":\"308\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3968\",\"suspend_id\":\"308\",\"product_id\":\"884\",\"product_code\":\"12\",\"product_name\":\"Baked shrimp with glass noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3969\",\"suspend_id\":\"308\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3970\",\"suspend_id\":\"308\",\"product_id\":\"1082\",\"product_code\":\"155\",\"product_name\":\"Roselle Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"3971\",\"suspend_id\":\"308\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-05 12:42:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1513, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"963\",\"date\":\"2023-12-05 17:35:11\",\"reference_no\":\"SALE2023\\/12\\/0310\",\"customer_id\":\"25\",\"customer\":\"Table 5\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"53200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3990.0000\",\"total_tax\":\"3990.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"57190.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-05 18:47:14\",\"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\":\"3388e169b5664e09643ecd094833b52bd13352859c23c2ee1711a26f7a2a5a00\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-05 17:48:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1514, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"967\",\"date\":\"2023-12-05 20:55:31\",\"reference_no\":\"SALE2023\\/12\\/0312\",\"customer_id\":\"31\",\"customer\":\"Table 11\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"322.5000\",\"total_tax\":\"322.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"4622.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"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\":\"d92893b8c70820864bd6ed181d4884b7dc1e8a0e46acbc3115c234b61d9c23af\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-05 20:14:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1515, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"968\",\"date\":\"2023-12-05 21:00:59\",\"reference_no\":\"SALE2023\\/12\\/0313\",\"customer_id\":\"18\",\"customer\":\"Table 15\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"11900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"892.5000\",\"total_tax\":\"892.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"12792.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-12-05 21:59:20\",\"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\":\"d1157c31390b015f7d730667825dbfecb0cf434681777db696769e1c51901a8d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-05 21:38:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1516, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"966\",\"date\":\"2023-12-05 20:08:00\",\"reference_no\":\"SALE2023\\/12\\/0311\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"207090.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"15592.5000\",\"total_tax\":\"16401.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"223492.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-05 22:25:12\",\"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\":\"97363dd7c870475cd5814ec3b28b23967cffeafa784e100f1d679c694894a6a4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-05 21:44:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1517, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"311\",\"date\":\"2023-12-05 22:38:56\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"13432.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"apple\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4134\",\"suspend_id\":\"311\",\"product_id\":\"1058\",\"product_code\":\"131\",\"product_name\":\"Bullet\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4135\",\"suspend_id\":\"311\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4136\",\"suspend_id\":\"311\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-05 21:47:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1518, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"310\",\"date\":\"2023-12-05 22:42:33\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"47\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"269658.3800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4163\",\"suspend_id\":\"310\",\"product_id\":\"1095\",\"product_code\":\"168\",\"product_name\":\"After-glo\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4164\",\"suspend_id\":\"310\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4165\",\"suspend_id\":\"310\",\"product_id\":\"1077\",\"product_code\":\"150\",\"product_name\":\"Oreo Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4166\",\"suspend_id\":\"310\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4167\",\"suspend_id\":\"310\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4168\",\"suspend_id\":\"310\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4169\",\"suspend_id\":\"310\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4170\",\"suspend_id\":\"310\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4171\",\"suspend_id\":\"310\",\"product_id\":\"1055\",\"product_code\":\"128\",\"product_name\":\"Maltina\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4172\",\"suspend_id\":\"310\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4173\",\"suspend_id\":\"310\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"36000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"8.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4174\",\"suspend_id\":\"310\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4175\",\"suspend_id\":\"310\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"5.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4176\",\"suspend_id\":\"310\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"60000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4177\",\"suspend_id\":\"310\",\"product_id\":\"917\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4178\",\"suspend_id\":\"310\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4179\",\"suspend_id\":\"310\",\"product_id\":\"950\",\"product_code\":\"44\",\"product_name\":\"Deep fried chicken rolls (8 pcs)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"27600.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4180\",\"suspend_id\":\"310\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4181\",\"suspend_id\":\"310\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4182\",\"suspend_id\":\"310\",\"product_id\":\"1123\",\"product_code\":\"183\",\"product_name\":\"Double Black\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4183\",\"suspend_id\":\"310\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-05 21:50:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1519, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"971\",\"date\":\"2023-12-05 21:58:17\",\"reference_no\":\"SALE2023\\/12\\/0314\",\"customer_id\":\"31\",\"customer\":\"Table 11\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"645.0000\",\"total_tax\":\"645.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"9245.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"8\",\"updated_by\":\"8\",\"updated_at\":\"2023-12-05 22:41:31\",\"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\":\"831bdf93972d2497558db4b56b2baebe03b195792c60f33acf61c6c18aefff23\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-05 21:58:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1520, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"976\",\"date\":\"2023-12-06 12:43:29\",\"reference_no\":\"SALE2023\\/12\\/0315\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"2565.0000\",\"total_tax\":\"2565.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"36765.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-12-06 12:49:02\",\"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\":\"b2ab55b6f655c0fe76a883a45fb3b8a53f0aafc19d3e3852e70adb6b2b0659e0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-06 12:28:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1521, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"979\",\"date\":\"2023-12-06 16:12:47\",\"reference_no\":\"SALE2023\\/12\\/0316\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"780.0000\",\"total_tax\":\"780.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"11180.0000\",\"sale_status\":\"pending\",\"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\":\"18b88d59169bbb73a5063ec06db31bf248d33b1035f1db3f9941168e65edf0c0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-06 15:43:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1522, 'Sale is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"981\",\"date\":\"2023-12-06 18:27:09\",\"reference_no\":\"SALE2023\\/12\\/0317\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8590.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"705.0000\",\"total_tax\":\"1514.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"10105.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"17\",\"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\":\"2605489831ad4609e1945bccde7f402b6099d9a7a0d151883811e0d7d76ffa76\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-06 17:32:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1523, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"985\",\"date\":\"2023-12-06 22:53:01\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0661\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8090.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"667.5000\",\"total_tax\":\"1476.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"478.3800\",\"grand_total\":\"10045.8800\",\"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\":\"10045.8800\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"8c44f910c020f252d8375b7aa65c09e841d147201a9121ce99e358322de2c447\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7857\",\"sale_id\":\"985\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"SER\",\"tax_name\":\"Service Charge\",\"tax_rate\":\"10.0000\",\"image\":\"8636ba83bb39673eeb3e425e710a8ef8.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-06 21:53:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1524, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"986\",\"date\":\"2023-12-06 22:54:54\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0662\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8090.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"667.5000\",\"total_tax\":\"1476.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"478.3800\",\"grand_total\":\"10045.8800\",\"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\":\"10045.8800\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"374c8b000dc2ddacfedc0b5ce40c6b977f5bbc7282c06fc3880941d1b9cdc4db\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7896\",\"sale_id\":\"986\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"SER\",\"tax_name\":\"Service Charge\",\"tax_rate\":\"10.0000\",\"image\":\"8636ba83bb39673eeb3e425e710a8ef8.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-06 21:55:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1525, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"984\",\"date\":\"2023-12-06 22:36:28\",\"reference_no\":\"SALE2023\\/12\\/0319\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2107.5000\",\"total_tax\":\"2107.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"30207.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"c1abddc8718d3e38199289c9c18ec757c3f8380beaa617c4a22f7d9fcdec3511\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-06 22:17:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1526, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"973\",\"date\":\"2023-12-05 22:50:31\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0654\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"238090.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"17917.5000\",\"total_tax\":\"18726.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"12840.8800\",\"grand_total\":\"269658.3800\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"47\",\"pos\":\"1\",\"paid\":\"269658.3800\",\"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\":\"fc62562d8633ed19136e1ee0efd8ad17d64a95d6f7d5fecd89ac30785f7ab8bf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7614\",\"sale_id\":\"973\",\"product_id\":\"1095\",\"product_code\":\"168\",\"product_name\":\"After-glo\",\"product_type\":\"standard\",\"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\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7615\",\"sale_id\":\"973\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"product_type\":\"standard\",\"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\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7616\",\"sale_id\":\"973\",\"product_id\":\"1077\",\"product_code\":\"150\",\"product_name\":\"Oreo Milkshake\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7617\",\"sale_id\":\"973\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7618\",\"sale_id\":\"973\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"3611848ea432ee96dcc15bdd484cc3f8.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7619\",\"sale_id\":\"973\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7620\",\"sale_id\":\"973\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7621\",\"sale_id\":\"973\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"SER\",\"tax_name\":\"Service Charge\",\"tax_rate\":\"10.0000\",\"image\":\"8636ba83bb39673eeb3e425e710a8ef8.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7622\",\"sale_id\":\"973\",\"product_id\":\"1055\",\"product_code\":\"128\",\"product_name\":\"Maltina\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"770d5cd208917783e23be1942596fa39.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7623\",\"sale_id\":\"973\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"26700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7624\",\"sale_id\":\"973\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"36000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"b2ec795bb80e5b60c2a37841990dcf5f.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7625\",\"sale_id\":\"973\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"19800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7626\",\"sale_id\":\"973\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"5.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7627\",\"sale_id\":\"973\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"60000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"15000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7628\",\"sale_id\":\"973\",\"product_id\":\"917\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7629\",\"sale_id\":\"973\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7630\",\"sale_id\":\"973\",\"product_id\":\"950\",\"product_code\":\"44\",\"product_name\":\"Deep fried chicken rolls (8 pcs)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"27600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7631\",\"sale_id\":\"973\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"16500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"0351e7f12fa437cfb06564e545bcdcee.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7632\",\"sale_id\":\"973\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"b70e2b136a4ad222a25e3fe5dd2551a2.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7633\",\"sale_id\":\"973\",\"product_id\":\"1123\",\"product_code\":\"183\",\"product_name\":\"Double Black\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37ed35e379b04aa73765de4238148d09.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"7634\",\"sale_id\":\"973\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"0351e7f12fa437cfb06564e545bcdcee.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-07 11:36:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1527, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"983\",\"date\":\"2023-12-06 21:03:00\",\"reference_no\":\"SALE2023\\/12\\/0318\",\"customer_id\":\"27\",\"customer\":\"Table 7\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"142790.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"10770.0000\",\"total_tax\":\"11579.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"154370.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-12-06 23:41:56\",\"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\":\"3a28433c71b4f522eeeb6ee1de26d07d00e0a7fac56574ee3f8e8c8b21c4eac4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-07 11:39:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1528, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"309\",\"date\":\"2023-12-05 23:12:08\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"72691.5000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"fon\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4184\",\"suspend_id\":\"309\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4185\",\"suspend_id\":\"309\",\"product_id\":\"1057\",\"product_code\":\"130\",\"product_name\":\"Redbull\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4186\",\"suspend_id\":\"309\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4187\",\"suspend_id\":\"309\",\"product_id\":\"976\",\"product_code\":\"64\",\"product_name\":\"Jameson 1780\",\"net_unit_price\":\"45000.0000\",\"unit_price\":\"45000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"45000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"45000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4188\",\"suspend_id\":\"309\",\"product_id\":\"937\",\"product_code\":\"37a\",\"product_name\":\"Spicy minced (beef)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4189\",\"suspend_id\":\"309\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-07 11:46:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1529, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"988\",\"date\":\"2023-12-07 12:33:40\",\"reference_no\":\"SALE2023\\/12\\/0320\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"100800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"7560.0000\",\"total_tax\":\"7560.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"108360.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-07 12:56:35\",\"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\":\"a552565aebdc3f4499d1e6202fc09aa60475d8a36ddad607a6806968f4b67b39\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-07 13:07:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1530, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"312\",\"date\":\"2023-12-07 17:12:47\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"17947.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4190\",\"suspend_id\":\"312\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4191\",\"suspend_id\":\"312\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4192\",\"suspend_id\":\"312\",\"product_id\":\"917\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4193\",\"suspend_id\":\"312\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-07 16:25:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1531, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"314\",\"date\":\"2023-12-07 18:02:53\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"32508.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4197\",\"suspend_id\":\"314\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4198\",\"suspend_id\":\"314\",\"product_id\":\"890\",\"product_code\":\"15b\",\"product_name\":\"Noodles (beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4199\",\"suspend_id\":\"314\",\"product_id\":\"959\",\"product_code\":\"52\",\"product_name\":\"Sago pearls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-07 19:31:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1532, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"313\",\"date\":\"2023-12-07 18:02:51\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"32508.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4194\",\"suspend_id\":\"313\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4195\",\"suspend_id\":\"313\",\"product_id\":\"890\",\"product_code\":\"15b\",\"product_name\":\"Noodles (beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4196\",\"suspend_id\":\"313\",\"product_id\":\"959\",\"product_code\":\"52\",\"product_name\":\"Sago pearls\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-07 19:33:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1533, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"997\",\"date\":\"2023-12-07 20:31:16\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0669\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2160.0000\",\"total_tax\":\"2160.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1548.0000\",\"grand_total\":\"32508.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"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\":\"8f4eecdfa1a958fc4c8dfc68245f6cf6557ea4172ff7d9794fc767cef73919c4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8052\",\"sale_id\":\"997\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8053\",\"sale_id\":\"997\",\"product_id\":\"890\",\"product_code\":\"15b\",\"product_name\":\"Noodles (beef)\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8054\",\"sale_id\":\"997\",\"product_id\":\"959\",\"product_code\":\"52\",\"product_name\":\"Sago pearls\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-07 19:35:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1534, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"995\",\"date\":\"2023-12-07 19:14:54\",\"reference_no\":\"SALE2023\\/12\\/0322\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"56000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4200.0000\",\"total_tax\":\"4200.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"60200.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-07 19:36:46\",\"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\":\"c712ac65166571663599cb0ce6d4bc649279f2adf2b2c9f0f825ac953df13ea0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-07 19:36:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1535, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"993\",\"date\":\"2023-12-07 14:38:32\",\"reference_no\":\"SALE2023\\/12\\/0321\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1192.5000\",\"total_tax\":\"1192.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"17092.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":\"18\",\"updated_at\":\"2023-12-07 17:05:41\",\"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\":\"fd413a17858945bfdec34211214f4fd31e3ad59f3836fffa371d228dd3b354c2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-07 19:36:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1536, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"315\",\"date\":\"2023-12-07 20:48:07\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"27090.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4200\",\"suspend_id\":\"315\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4201\",\"suspend_id\":\"315\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4202\",\"suspend_id\":\"315\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4203\",\"suspend_id\":\"315\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-07 20:16:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1537, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"996\",\"date\":\"2023-12-07 20:11:51\",\"reference_no\":\"SALE2023\\/12\\/0323\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"23000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1725.0000\",\"total_tax\":\"1725.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"24725.0000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"66ecaa5765ab548098c57cc7a6556cdaeb6bf75e3903230597bceec5d8da755d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-07 20:18:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1538, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"317\",\"date\":\"2023-12-07 21:22:46\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"1128.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"T5\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4208\",\"suspend_id\":\"317\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4209\",\"suspend_id\":\"317\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-07 20:24:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1539, 'POS Bill is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"316\",\"date\":\"2023-12-07 21:21:56\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"50680.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4204\",\"suspend_id\":\"316\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4205\",\"suspend_id\":\"316\",\"product_id\":\"1081\",\"product_code\":\"154\",\"product_name\":\"Chrysanthemum Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4206\",\"suspend_id\":\"316\",\"product_id\":\"953\",\"product_code\":\"47\",\"product_name\":\"Fried fish with chili sauce\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"30000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4207\",\"suspend_id\":\"316\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-07 20:46:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1540, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1002\",\"date\":\"2023-12-07 21:17:00\",\"reference_no\":\"SALE2023\\/12\\/0325\",\"customer_id\":\"25\",\"customer\":\"Table 5\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"75.0000\",\"total_tax\":\"75.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"1075.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"1\",\"updated_at\":\"2023-12-07 21:20:52\",\"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\":\"431a2d4d1038e712eb7cd075df79c9665f6151db4e925ef5e05539a966499222\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-07 20:54:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1541, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1000\",\"date\":\"2023-12-07 20:52:00\",\"reference_no\":\"SALE2023\\/12\\/0324\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"54900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4117.5000\",\"total_tax\":\"4117.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"59017.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":\"1\",\"updated_at\":\"2023-12-07 21:18:42\",\"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\":\"a854c890047d89a4951cdd2c15f5ab5979f4b30710ef0ad3b59d9654b62e8f5c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-07 20:54:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1542, 'POS Bill is being deleted by apple (User Id: 2)', '{\"model\":{\"id\":\"319\",\"date\":\"2023-12-07 22:17:34\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"10045.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"2\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4212\",\"suspend_id\":\"319\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-07 21:18:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1543, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1006\",\"date\":\"2023-12-07 22:18:01\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0675\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8090.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"667.5000\",\"total_tax\":\"1476.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"478.3800\",\"grand_total\":\"10045.8800\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3c47fda478a12ca27c0ac2dbee526e279b154b2cb76dd1825793b07e213e9fee\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8087\",\"sale_id\":\"1006\",\"product_id\":\"856\",\"product_code\":\"1\",\"product_name\":\"Chicken Biryani\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8090.9100\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"809.0900\",\"tax_rate_id\":\"3\",\"tax\":\"10%\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"SER\",\"tax_name\":\"Service Charge\",\"tax_rate\":\"10.0000\",\"image\":\"8636ba83bb39673eeb3e425e710a8ef8.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-07 21:19:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1544, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1004\",\"date\":\"2023-12-07 21:29:07\",\"reference_no\":\"SALE2023\\/12\\/0326\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1087.5000\",\"total_tax\":\"1087.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"15587.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"19018e348e704e738d8aa3215f5038a082a1c04eec2dc788d993dd08db7d8c47\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-07 21:19:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1545, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"318\",\"date\":\"2023-12-07 21:55:31\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"2\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"16366.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"1\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4210\",\"suspend_id\":\"318\",\"product_id\":\"1126\",\"product_code\":\"996\",\"product_name\":\"HOT TEA\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4211\",\"suspend_id\":\"318\",\"product_id\":\"957\",\"product_code\":\"50b\",\"product_name\":\"Mixed set (small)\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-07 21:20:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1546, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1008\",\"date\":\"2023-12-08 11:20:14\",\"reference_no\":\"SALE2023\\/12\\/0327\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"1177.5000\",\"total_tax\":\"1177.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"16877.5000\",\"sale_status\":\"pending\",\"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\":\"ee1f2c2f15ab9b76a3f4829a83080c331abc5d38c7e2ddb0a697fcb114d8c899\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-08 10:25:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1547, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1009\",\"date\":\"2023-12-08 11:27:13\",\"reference_no\":\"SALE2023\\/12\\/0328\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"900.0000\",\"total_tax\":\"900.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"12900.0000\",\"sale_status\":\"pending\",\"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\":\"914bfec8d95b0ae124a548eb84a5b2669ec563110aa581fc8b5136c9275b6960\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-08 10:38:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1548, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1010\",\"date\":\"2023-12-08 11:29:21\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0677\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"900.0000\",\"total_tax\":\"900.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"645.0000\",\"grand_total\":\"13545.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"31\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"13545.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\":\"f83c9ebd00c52a0a01ab702de61a52553ac98793be4d52ff60cbce3b82716ab3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8097\",\"sale_id\":\"1010\",\"product_id\":\"1122\",\"product_code\":\"200\",\"product_name\":\"EXTRA  NOODLES\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8098\",\"sale_id\":\"1010\",\"product_id\":\"1119\",\"product_code\":\"190\",\"product_name\":\"JAEW DIPPING SAUCE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8099\",\"sale_id\":\"1010\",\"product_id\":\"962\",\"product_code\":\"55\",\"product_name\":\"Cendol in coconut milk\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8100\",\"sale_id\":\"1010\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-08 10:39:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1549, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1012\",\"date\":\"2023-12-08 11:38:59\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0678\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1042.5000\",\"total_tax\":\"1042.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"747.1300\",\"grand_total\":\"15689.6300\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"31\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"15689.6300\",\"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\":\"b8958a112f039313bf8ff7211e98d38d36cad202f309124dfd72c6936c472df6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8103\",\"sale_id\":\"1012\",\"product_id\":\"951\",\"product_code\":\"45\",\"product_name\":\"Red grilled chicken\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8104\",\"sale_id\":\"1012\",\"product_id\":\"998\",\"product_code\":\"80\",\"product_name\":\"Eva\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6000.0000\",\"unit_price\":\"6000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"d762d1d796f2e6effcc93f7d9bca22a1.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-08 10:40:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1550, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1011\",\"date\":\"2023-12-08 11:36:32\",\"reference_no\":\"SALE2023\\/12\\/0329\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"13900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1042.5000\",\"total_tax\":\"1042.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"grand_total\":\"14942.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"67d7ecb06450b468161b8061d05e20e10071fe1569626122e19470b4d54cebf5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-08 10:41:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1551, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1013\",\"date\":\"2023-12-08 12:57:54\",\"reference_no\":\"SALE2023\\/12\\/0330\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2302.5000\",\"total_tax\":\"2302.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1650.1300\",\"grand_total\":\"34652.6300\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"6361eda019f8fcbf6e00744a1e49e392487fbf50c9d6f159dd728d05e8d7687e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-08 13:21:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1552, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1016\",\"date\":\"2023-12-08 14:12:23\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0680\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"187.5000\",\"total_tax\":\"187.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"134.3800\",\"grand_total\":\"2821.8800\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"31\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"2821.8800\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3835ec99e9b6bf5ac5d906e02e3243e5c72066c8103f32533489566f3eed2bec\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8116\",\"sale_id\":\"1016\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8117\",\"sale_id\":\"1016\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-08 13:22:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1553, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1015\",\"date\":\"2023-12-08 13:38:08\",\"reference_no\":\"SALE2023\\/12\\/0331\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"150.0000\",\"total_tax\":\"150.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"107.5000\",\"grand_total\":\"2257.5000\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"84b4511dd44f5ac4877c90aa3593fe34921902c9a2ce7b7247f20ebba615232a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-08 13:22:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1554, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1014\",\"date\":\"2023-12-08 13:03:31\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0679\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2302.5000\",\"total_tax\":\"2302.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1650.1300\",\"grand_total\":\"34652.6300\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"31\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"1\",\"paid\":\"34652.6300\",\"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\":\"5c5ded1bd0c48477269423e99060f7b100ce7962dfb2d055cdb8b7762bdbaff6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8110\",\"sale_id\":\"1014\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8111\",\"sale_id\":\"1014\",\"product_id\":\"911\",\"product_code\":\"24\",\"product_name\":\"Tom Yum (shrimp\\/clear soup)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8112\",\"sale_id\":\"1014\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"46eb9a5ccc6b764d0e7259e0eef9b4da.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8113\",\"sale_id\":\"1014\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8114\",\"sale_id\":\"1014\",\"product_id\":\"927\",\"product_code\":\"30b\",\"product_name\":\"Stir-fried shrimp mixed vegetables\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-08 13:25:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1555, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1023\",\"date\":\"2023-12-08 21:07:37\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0684\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2377.5000\",\"total_tax\":\"2377.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1703.8800\",\"grand_total\":\"35781.3800\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"31\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"35781.3800\",\"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\":\"1f7aa58ad37ffbb83dd35e683cd79b9b868f394156f01ea69f0712484eb9fc5b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8149\",\"sale_id\":\"1023\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8150\",\"sale_id\":\"1023\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8151\",\"sale_id\":\"1023\",\"product_id\":\"917\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8152\",\"sale_id\":\"1023\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"46eb9a5ccc6b764d0e7259e0eef9b4da.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8153\",\"sale_id\":\"1023\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8154\",\"sale_id\":\"1023\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-08 20:11:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1556, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1021\",\"date\":\"2023-12-08 21:03:56\",\"reference_no\":\"SALE2023\\/12\\/0334\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"32200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2415.0000\",\"total_tax\":\"2415.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1730.7500\",\"grand_total\":\"36345.7500\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"aecb0b9473b141e1b7647b28c71f1488ff232e2be0b806bba67dcaaf1a98d720\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-08 20:13:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1557, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1025\",\"date\":\"2023-12-08 22:16:56\",\"reference_no\":\"SALE2023\\/12\\/0336\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1972.5000\",\"total_tax\":\"1972.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1413.6300\",\"grand_total\":\"29686.1300\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"17\",\"updated_by\":\"17\",\"updated_at\":\"2023-12-08 23:00:53\",\"total_items\":\"9\",\"pos\":\"0\",\"paid\":\"29686.1300\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"14f7667fcf23656b49c0cf556964b99d2efb048f5bb4aa6c4d3c3e78c82604aa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8244\",\"sale_id\":\"1025\",\"product_id\":\"1060\",\"product_code\":\"133\",\"product_name\":\"Margarita\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"926d74c795d94a9d4a6101dedd7156a2.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8245\",\"sale_id\":\"1025\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8246\",\"sale_id\":\"1025\",\"product_id\":\"948\",\"product_code\":\"42\",\"product_name\":\"Fried chicken wings\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"13800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8247\",\"sale_id\":\"1025\",\"product_id\":\"1132\",\"product_code\":\"CIG\",\"product_name\":\"Cigarette\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8248\",\"sale_id\":\"1025\",\"product_id\":\"1029\",\"product_code\":\"103b\",\"product_name\":\"Olmeca White (shot)\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"c83c9b6996b67560ac6a80bf2319b251.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-08 22:42:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1558, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"320\",\"date\":\"2023-12-09 11:34:58\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"1\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"8465.6300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"Apple\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4213\",\"suspend_id\":\"320\",\"product_id\":\"1153\",\"product_code\":\"875\",\"product_name\":\"AGOR\",\"net_unit_price\":\"7500.0000\",\"unit_price\":\"7500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-09 15:26:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1559, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1037\",\"date\":\"2023-12-09 18:40:42\",\"reference_no\":\"SALE2023\\/12\\/0344\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1965.0000\",\"total_tax\":\"1965.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1408.2500\",\"grand_total\":\"29573.2500\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":\"18\",\"updated_at\":\"2023-12-09 18:41:43\",\"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\":\"92257de6bfb0a874a05aa3a2ad1865f968928b143a5d756599c7201d25e4c778\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-09 18:20:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1560, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1031\",\"date\":\"2023-12-09 14:14:27\",\"reference_no\":\"SALE2023\\/12\\/0340\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"17800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1335.0000\",\"total_tax\":\"1335.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"956.7500\",\"grand_total\":\"20091.7500\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"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\":\"6972a8b119237338249724c1959ab691c06490e0bd98681dd0019bb9539308f5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-09 18:21:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1561, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"322\",\"date\":\"2023-12-09 20:47:00\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"50003.6300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4226\",\"suspend_id\":\"322\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4227\",\"suspend_id\":\"322\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4228\",\"suspend_id\":\"322\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4229\",\"suspend_id\":\"322\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4230\",\"suspend_id\":\"322\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4231\",\"suspend_id\":\"322\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4232\",\"suspend_id\":\"322\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-09 19:57:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1562, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"321\",\"date\":\"2023-12-09 21:06:16\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"33636.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4239\",\"suspend_id\":\"321\",\"product_id\":\"941\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4240\",\"suspend_id\":\"321\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4241\",\"suspend_id\":\"321\",\"product_id\":\"901\",\"product_code\":\"19a\",\"product_name\":\"Panang curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4242\",\"suspend_id\":\"321\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4243\",\"suspend_id\":\"321\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4244\",\"suspend_id\":\"321\",\"product_id\":\"1082\",\"product_code\":\"155\",\"product_name\":\"Roselle Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4245\",\"suspend_id\":\"321\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-09 20:07:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1563, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"324\",\"date\":\"2023-12-09 21:31:19\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"21784.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T11\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4252\",\"suspend_id\":\"324\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4253\",\"suspend_id\":\"324\",\"product_id\":\"1081\",\"product_code\":\"154\",\"product_name\":\"Chrysanthemum Juice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4254\",\"suspend_id\":\"324\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4255\",\"suspend_id\":\"324\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-09 20:57:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1564, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1047\",\"date\":\"2023-12-09 21:59:19\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0693\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"450.0000\",\"total_tax\":\"450.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"322.5000\",\"grand_total\":\"6772.5000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"31\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"6772.5000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"684b69c457dc96152c36d672862105e0bb5354440084f6e2863c9fd527603321\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8414\",\"sale_id\":\"1047\",\"product_id\":\"1081\",\"product_code\":\"154\",\"product_name\":\"Chrysanthemum Juice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-09 22:04:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1565, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1046\",\"date\":\"2023-12-09 21:57:48\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0692\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"26300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1972.5000\",\"total_tax\":\"1972.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1413.6300\",\"grand_total\":\"29686.1300\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"31\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"1\",\"paid\":\"29686.1300\",\"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\":\"c25f938b46c77a1162ee1f1c071ce171ad38c2441f6d47e48a31acdc1d818397\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8406\",\"sale_id\":\"1046\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8407\",\"sale_id\":\"1046\",\"product_id\":\"1081\",\"product_code\":\"154\",\"product_name\":\"Chrysanthemum Juice\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8408\",\"sale_id\":\"1046\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8409\",\"sale_id\":\"1046\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8410\",\"sale_id\":\"1046\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8411\",\"sale_id\":\"1046\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8412\",\"sale_id\":\"1046\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8413\",\"sale_id\":\"1046\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-09 22:04:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1566, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1045\",\"date\":\"2023-12-09 21:17:29\",\"reference_no\":\"SALE2023\\/12\\/0348\",\"customer_id\":\"31\",\"customer\":\"Table 11\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"31300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2347.5000\",\"total_tax\":\"2347.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1682.3800\",\"grand_total\":\"35329.8800\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-09 21:54:44\",\"total_items\":\"10\",\"pos\":\"0\",\"paid\":\"35329.8800\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"c30e5d427fc4f0c0908e5d2f113ffb58603d970926eafbfd58a3dcf43bf9f0bb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8399\",\"sale_id\":\"1045\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8400\",\"sale_id\":\"1045\",\"product_id\":\"1081\",\"product_code\":\"154\",\"product_name\":\"Chrysanthemum Juice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8401\",\"sale_id\":\"1045\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8402\",\"sale_id\":\"1045\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8403\",\"sale_id\":\"1045\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8404\",\"sale_id\":\"1045\",\"product_id\":\"1080\",\"product_code\":\"153\",\"product_name\":\"Longan Juice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8405\",\"sale_id\":\"1045\",\"product_id\":\"1088\",\"product_code\":\"161\",\"product_name\":\"Green Tea\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-09 22:07:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1567, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1043\",\"date\":\"2023-12-09 21:00:04\",\"reference_no\":\"SALE2023\\/12\\/0347\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"16900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1267.5000\",\"total_tax\":\"1267.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"908.3800\",\"grand_total\":\"19075.8800\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":\"18\",\"updated_at\":\"2023-12-09 21:24:51\",\"total_items\":\"4\",\"pos\":\"0\",\"paid\":\"19075.8800\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"623ca856e2ebf1ddfa7f7663f96f638a74f5e98cb517004317c1cd8ac81643ed\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8388\",\"sale_id\":\"1043\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"46eb9a5ccc6b764d0e7259e0eef9b4da.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8389\",\"sale_id\":\"1043\",\"product_id\":\"898\",\"product_code\":\"18b\",\"product_name\":\"Red curry (beef)\",\"product_type\":\"standard\",\"option_id\":null,\"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\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8390\",\"sale_id\":\"1043\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-09 22:09:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1568, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1040\",\"date\":\"2023-12-09 20:08:23\",\"reference_no\":\"SALE2023\\/12\\/0346\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"29300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2197.5000\",\"total_tax\":\"2197.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1574.8800\",\"grand_total\":\"33072.3800\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"0\",\"paid\":\"33072.3800\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"75d935b4b3ea3dfc9200e2f17e6da52741ccfc2aac6ffc0415450242441a175b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8334\",\"sale_id\":\"1040\",\"product_id\":\"941\",\"product_code\":\"38a\",\"product_name\":\"Fried spring rolls (stuffed with chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8335\",\"sale_id\":\"1040\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8336\",\"sale_id\":\"1040\",\"product_id\":\"901\",\"product_code\":\"19a\",\"product_name\":\"Panang curry (chicken)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8337\",\"sale_id\":\"1040\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8338\",\"sale_id\":\"1040\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8339\",\"sale_id\":\"1040\",\"product_id\":\"1082\",\"product_code\":\"155\",\"product_name\":\"Roselle Juice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-09 22:12:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1569, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1039\",\"date\":\"2023-12-09 19:46:46\",\"reference_no\":\"SALE2023\\/12\\/0345\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"44800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3360.0000\",\"total_tax\":\"3360.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"2408.0000\",\"grand_total\":\"50568.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-09 21:01:31\",\"total_items\":\"8\",\"pos\":\"0\",\"paid\":\"50568.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"f9f9b79c8c649a015dcfcc6f91d003d7b818f75347d444f8e04a6be7eaa2501a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8367\",\"sale_id\":\"1039\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"product_type\":\"standard\",\"option_id\":null,\"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\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8368\",\"sale_id\":\"1039\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8369\",\"sale_id\":\"1039\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"15000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8370\",\"sale_id\":\"1039\",\"product_id\":\"1074\",\"product_code\":\"147\",\"product_name\":\"Vanila Milkshake\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8371\",\"sale_id\":\"1039\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8372\",\"sale_id\":\"1039\",\"product_id\":\"1094\",\"product_code\":\"167\",\"product_name\":\"Chapman\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8373\",\"sale_id\":\"1039\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8374\",\"sale_id\":\"1039\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-09 22:12:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1570, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"323\",\"date\":\"2023-12-09 21:12:47\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"3\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"16254.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T8\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4246\",\"suspend_id\":\"323\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4247\",\"suspend_id\":\"323\",\"product_id\":\"898\",\"product_code\":\"18b\",\"product_name\":\"Red curry (beef)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4248\",\"suspend_id\":\"323\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-10 11:51:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1571, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1051\",\"date\":\"2023-12-10 12:51:50\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0696\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"14400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1080.0000\",\"total_tax\":\"1080.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"774.0000\",\"grand_total\":\"16254.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\":\"1\",\"paid\":\"16254.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\":\"1583dd26817d8dacca8f7a99cce20f7d710e9867c900cda3013481dcdb627b94\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8501\",\"sale_id\":\"1051\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"product_type\":\"standard\",\"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\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"46eb9a5ccc6b764d0e7259e0eef9b4da.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8502\",\"sale_id\":\"1051\",\"product_id\":\"898\",\"product_code\":\"18b\",\"product_name\":\"Red curry (beef)\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8503\",\"sale_id\":\"1051\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-10 11:52:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1572, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"325\",\"date\":\"2023-12-10 13:08:07\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"32\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"135450.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4270\",\"suspend_id\":\"325\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4271\",\"suspend_id\":\"325\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4272\",\"suspend_id\":\"325\",\"product_id\":\"1077\",\"product_code\":\"150\",\"product_name\":\"Oreo Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4273\",\"suspend_id\":\"325\",\"product_id\":\"1049\",\"product_code\":\"122\",\"product_name\":\"Leo Beer\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4274\",\"suspend_id\":\"325\",\"product_id\":\"1035\",\"product_code\":\"108\",\"product_name\":\"Heineken\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4275\",\"suspend_id\":\"325\",\"product_id\":\"906\",\"product_code\":\"21a\",\"product_name\":\"Massaman Curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4276\",\"suspend_id\":\"325\",\"product_id\":\"863\",\"product_code\":\"4e\",\"product_name\":\"Fried rice mixed\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"13800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4277\",\"suspend_id\":\"325\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4278\",\"suspend_id\":\"325\",\"product_id\":\"912\",\"product_code\":\"24b\",\"product_name\":\"Tom Yum (shrimp\\/creamy soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4279\",\"suspend_id\":\"325\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"29700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4280\",\"suspend_id\":\"325\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4281\",\"suspend_id\":\"325\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4282\",\"suspend_id\":\"325\",\"product_id\":\"1114\",\"product_code\":\"PR1001\",\"product_name\":\"Fried egg\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"6.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4283\",\"suspend_id\":\"325\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"5.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4284\",\"suspend_id\":\"325\",\"product_id\":\"917\",\"product_code\":\"27a\",\"product_name\":\"Stir-fried with holy basil (chicken)\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-10 12:22:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1573, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1050\",\"date\":\"2023-12-10 11:46:56\",\"reference_no\":\"SALE2023\\/12\\/0349\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"114800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"8610.0000\",\"total_tax\":\"8610.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"6170.5000\",\"grand_total\":\"129580.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-12-10 13:03:57\",\"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\":\"a950bc6c00badbcc32dae0bbd68565cf57881cd484c037443e05cb0362124dcd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-10 13:35:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1574, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"326\",\"date\":\"2023-12-10 15:30:24\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"34088.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4285\",\"suspend_id\":\"326\",\"product_id\":\"868\",\"product_code\":\"8b\",\"product_name\":\"Pad Thai (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4286\",\"suspend_id\":\"326\",\"product_id\":\"886\",\"product_code\":\"14\",\"product_name\":\"Rice noodles with fish curry\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4287\",\"suspend_id\":\"326\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4288\",\"suspend_id\":\"326\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-10 14:35:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1575, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1055\",\"date\":\"2023-12-10 15:18:30\",\"reference_no\":\"SALE2023\\/12\\/0350\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2265.0000\",\"total_tax\":\"2265.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1623.2500\",\"grand_total\":\"34088.2500\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"20e46691c19209bcc622097ff52b17d26697f5aca902e8b0e9e7edc9b726e561\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-10 15:54:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1576, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1057\",\"date\":\"2023-12-10 17:06:17\",\"reference_no\":\"SALE2023\\/12\\/0351\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"30490.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"2347.5000\",\"total_tax\":\"3156.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"1682.3800\",\"grand_total\":\"35329.8800\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"17\",\"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\":\"9de63a31685eefe288a35aeae45f8a095edfb65c21af65a150765d69a5706ae9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-10 16:09:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1577, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1059\",\"date\":\"2023-12-10 17:25:07\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0702\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"733\",\"total_discount\":\"733.0000\",\"order_discount\":\"733.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"432.5250\",\"total_tax\":\"432.5250\",\"shipping\":\"0.0000\",\"service_charge\":\"309.9800\",\"grand_total\":\"6509.5100\",\"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\":\"6509.5100\",\"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\":\"bfc9682e50e1e4dd6c4f80faa6c213aa9882ed6735de83d69c356ed0ce181138\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8593\",\"sale_id\":\"1059\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8594\",\"sale_id\":\"1059\",\"product_id\":\"1126\",\"product_code\":\"996\",\"product_name\":\"HOT TEA\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-10 16:37:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1578, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1061\",\"date\":\"2023-12-10 19:14:11\",\"reference_no\":\"SALE2023\\/12\\/0352\",\"customer_id\":\"33\",\"customer\":\"Table 13\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20490.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"1597.5000\",\"total_tax\":\"2406.5900\",\"shipping\":\"0.0000\",\"service_charge\":\"1144.8800\",\"grand_total\":\"24042.3800\",\"sale_status\":\"pending\",\"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\":\"5611c0d7154d2497793cc476e57142dfac277297ea2e3a4a4949d07c19a52195\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-10 18:58:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1579, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1062\",\"date\":\"2023-12-10 19:18:58\",\"reference_no\":\"SALE2023\\/12\\/0353\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2167.5000\",\"total_tax\":\"2167.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1553.3800\",\"grand_total\":\"32620.8800\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-12-10 19:49:49\",\"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\":\"0c4f5b96d5d1068cb6f335be7d52fc34d4fe307d747022fd1be8965ffc0d6a5b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-10 19:01:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1580, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1066\",\"date\":\"2023-12-10 21:11:16\",\"reference_no\":\"SALE2023\\/12\\/0354\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"24500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1837.5000\",\"total_tax\":\"1837.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1316.8800\",\"grand_total\":\"27654.3800\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"17\",\"updated_by\":\"17\",\"updated_at\":\"2023-12-10 22:12:12\",\"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\":\"c7221141583ab148a9fb0ccf995f2d1734e44355de260064313a2769dfdea866\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-10 21:16:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1581, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1067\",\"date\":\"2023-12-10 21:13:48\",\"reference_no\":\"SALE2023\\/12\\/0355\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"2325.0000\",\"total_tax\":\"2325.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1666.2500\",\"grand_total\":\"34991.2500\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-12-10 21:36:34\",\"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\":\"0dfcb1168cd3ef921ff465354a9cf1466d50530a92ece6c222326d2137dc9cdb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-10 21:41:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1582, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"327\",\"date\":\"2023-12-11 12:20:05\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"18\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"73368.7500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4311\",\"suspend_id\":\"327\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4312\",\"suspend_id\":\"327\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4313\",\"suspend_id\":\"327\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4314\",\"suspend_id\":\"327\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4315\",\"suspend_id\":\"327\",\"product_id\":\"1075\",\"product_code\":\"148\",\"product_name\":\"Chocolate Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4316\",\"suspend_id\":\"327\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4317\",\"suspend_id\":\"327\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4318\",\"suspend_id\":\"327\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4319\",\"suspend_id\":\"327\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4320\",\"suspend_id\":\"327\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4321\",\"suspend_id\":\"327\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4322\",\"suspend_id\":\"327\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-11 11:22:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1583, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"328\",\"date\":\"2023-12-11 13:12:10\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"15\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"49777.8800\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4334\",\"suspend_id\":\"328\",\"product_id\":\"908\",\"product_code\":\"21c\",\"product_name\":\"Massaman Curry (lamb)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4335\",\"suspend_id\":\"328\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4336\",\"suspend_id\":\"328\",\"product_id\":\"1015\",\"product_code\":\"95b\",\"product_name\":\"Gordon Gin (shot)\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4337\",\"suspend_id\":\"328\",\"product_id\":\"1053\",\"product_code\":\"126\",\"product_name\":\"Sprite\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4338\",\"suspend_id\":\"328\",\"product_id\":\"859\",\"product_code\":\"4a\",\"product_name\":\"Fried rice with chicken\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"23700.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4339\",\"suspend_id\":\"328\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4340\",\"suspend_id\":\"328\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-11 12:13:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1584, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1073\",\"date\":\"2023-12-11 12:44:44\",\"reference_no\":\"SALE2023\\/12\\/0357\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"44100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3307.5000\",\"total_tax\":\"3307.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"2370.3800\",\"grand_total\":\"49777.8800\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":\"18\",\"updated_at\":\"2023-12-11 12:56:57\",\"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\":\"bcda51dad878bbcf96da9127547a6028417610a7e47351566dd71f9d2df38d6d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-11 12:15:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1585, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1071\",\"date\":\"2023-12-11 11:21:12\",\"reference_no\":\"SALE2023\\/12\\/0356\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"66000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"4950.0000\",\"total_tax\":\"4950.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"3547.5000\",\"grand_total\":\"74497.5000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-11 12:17:51\",\"total_items\":\"18\",\"pos\":\"0\",\"paid\":\"74497.5000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"d66d5c5c928c72f22593bb8f4b3959099cfd36fbd8cb175c16dc979477500172\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8714\",\"sale_id\":\"1071\",\"product_id\":\"949\",\"product_code\":\"43\",\"product_name\":\"Sun-dried beef\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8715\",\"sale_id\":\"1071\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"product_type\":\"standard\",\"option_id\":null,\"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\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8716\",\"sale_id\":\"1071\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8717\",\"sale_id\":\"1071\",\"product_id\":\"866\",\"product_code\":\"7\",\"product_name\":\"Sticky rice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"8000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8718\",\"sale_id\":\"1071\",\"product_id\":\"1075\",\"product_code\":\"148\",\"product_name\":\"Chocolate Milkshake\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8719\",\"sale_id\":\"1071\",\"product_id\":\"1076\",\"product_code\":\"149\",\"product_name\":\"Strawberry Milkshake\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8720\",\"sale_id\":\"1071\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8721\",\"sale_id\":\"1071\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8722\",\"sale_id\":\"1071\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8723\",\"sale_id\":\"1071\",\"product_id\":\"894\",\"product_code\":\"17b\",\"product_name\":\"Green curry (beef)\",\"product_type\":\"standard\",\"option_id\":null,\"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\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8724\",\"sale_id\":\"1071\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8725\",\"sale_id\":\"1071\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-11 12:16:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1586, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"329\",\"date\":\"2023-12-11 18:14:09\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"12\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"48649.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4369\",\"suspend_id\":\"329\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4370\",\"suspend_id\":\"329\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4371\",\"suspend_id\":\"329\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4372\",\"suspend_id\":\"329\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4373\",\"suspend_id\":\"329\",\"product_id\":\"908\",\"product_code\":\"21c\",\"product_name\":\"Massaman Curry (lamb)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4374\",\"suspend_id\":\"329\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4375\",\"suspend_id\":\"329\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4376\",\"suspend_id\":\"329\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4377\",\"suspend_id\":\"329\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-11 17:29:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1587, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1078\",\"date\":\"2023-12-11 19:12:55\",\"reference_no\":\"SALE2023\\/12\\/0359\",\"customer_id\":\"28\",\"customer\":\"Table 8\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"8590.9100\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"809.0900\",\"order_tax_id\":\"4\",\"order_tax\":\"705.0000\",\"total_tax\":\"1514.0900\",\"shipping\":\"0.0000\",\"service_charge\":\"505.2500\",\"grand_total\":\"10610.2500\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"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\":\"1fba9f3cbe0418859f3e17f482fd5f135c8c47e16cf09466c04602f76fa40dcf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-11 19:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1588, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1076\",\"date\":\"2023-12-11 18:29:33\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0712\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"43100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3232.5000\",\"total_tax\":\"3232.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"2316.6300\",\"grand_total\":\"48649.1300\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"31\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"12\",\"pos\":\"1\",\"paid\":\"48649.1300\",\"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\":\"a1c2da58f8170285d593885ca4c6f4e361917fbbecf39913aea98f7ba3a896be\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8764\",\"sale_id\":\"1076\",\"product_id\":\"933\",\"product_code\":\"35\",\"product_name\":\"Spicy papaya salad (Thai style)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8765\",\"sale_id\":\"1076\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8766\",\"sale_id\":\"1076\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8767\",\"sale_id\":\"1076\",\"product_id\":\"893\",\"product_code\":\"17a\",\"product_name\":\"Green curry (chicken)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8768\",\"sale_id\":\"1076\",\"product_id\":\"908\",\"product_code\":\"21c\",\"product_name\":\"Massaman Curry (lamb)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8769\",\"sale_id\":\"1076\",\"product_id\":\"1089\",\"product_code\":\"162\",\"product_name\":\"Orange Juice\",\"product_type\":\"standard\",\"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\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8770\",\"sale_id\":\"1076\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"37c0eb56c0b0f480f49e34096fab7273.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8771\",\"sale_id\":\"1076\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"3611848ea432ee96dcc15bdd484cc3f8.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8772\",\"sale_id\":\"1076\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-11 19:06:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1589, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1084\",\"date\":\"2023-12-11 20:12:58\",\"reference_no\":\"SALE2023\\/12\\/0361\",\"customer_id\":\"33\",\"customer\":\"Table 13\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"33700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2527.5000\",\"total_tax\":\"2527.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1811.3800\",\"grand_total\":\"38038.8800\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"updated_by\":\"18\",\"updated_at\":\"2023-12-11 21:08:18\",\"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\":\"4ca245c44b4e1d793f924d7aeaa51724ed8e45e22a45af4709ba513e332515c7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-11 20:51:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1590, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1085\",\"date\":\"2023-12-11 20:46:01\",\"reference_no\":\"SALE2023\\/12\\/0362\",\"customer_id\":\"18\",\"customer\":\"Table 15\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"112.5000\",\"total_tax\":\"112.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"80.6300\",\"grand_total\":\"1693.1300\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"0\",\"paid\":\"1693.1300\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"61b68c920e7a1e07774b1b10e5c079766c5b7468ddd2b3ec2a47f379b2de59ba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8799\",\"sale_id\":\"1085\",\"product_id\":\"1042\",\"product_code\":\"115\",\"product_name\":\"Origin Bitters (75)\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"3b883b2d5e375e52f1ebb8a684b529c4.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-11 20:51:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1591, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1082\",\"date\":\"2023-12-11 20:05:20\",\"reference_no\":\"SALE2023\\/12\\/0360\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"487.5000\",\"total_tax\":\"487.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"349.3800\",\"grand_total\":\"7336.8800\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"0\",\"paid\":\"7336.8800\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":\"0\",\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":null,\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"b7224e0ff1d2e58c9ccedc7e6d0bb2cb244f9435fc1979de6d7bcdd4ec9182b0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8791\",\"sale_id\":\"1082\",\"product_id\":\"1126\",\"product_code\":\"996\",\"product_name\":\"HOT TEA\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8792\",\"sale_id\":\"1082\",\"product_id\":\"1082\",\"product_code\":\"155\",\"product_name\":\"Roselle Juice\",\"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\":\"1\",\"tax\":\"0\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-11 20:52:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1592, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1075\",\"date\":\"2023-12-11 17:45:11\",\"reference_no\":\"SALE2023\\/12\\/0358\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"487.5000\",\"total_tax\":\"487.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"349.3800\",\"grand_total\":\"7336.8800\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-11 18:16:22\",\"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\":\"01779efb7b53639853005f135814521f12fa5acf701b0fc05c1531cb04896700\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-11 20:52:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1593, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"330\",\"date\":\"2023-12-11 21:04:16\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"15\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"36910.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T13\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4378\",\"suspend_id\":\"330\",\"product_id\":\"931\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4379\",\"suspend_id\":\"330\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4380\",\"suspend_id\":\"330\",\"product_id\":\"1075\",\"product_code\":\"148\",\"product_name\":\"Chocolate Milkshake\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4381\",\"suspend_id\":\"330\",\"product_id\":\"1029\",\"product_code\":\"103b\",\"product_name\":\"Olmeca White (shot)\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"18000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-11 21:03:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1594, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1090\",\"date\":\"2023-12-11 22:03:29\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0720\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"32700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2452.5000\",\"total_tax\":\"2452.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1757.6300\",\"grand_total\":\"36910.1300\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"31\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"15\",\"pos\":\"1\",\"paid\":\"36910.1300\",\"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\":\"b0efbf52686b1adaca3548bd7105a7e2cf01d5d6e0ae3e5185387933fa34ee34\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8840\",\"sale_id\":\"1090\",\"product_id\":\"931\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8841\",\"sale_id\":\"1090\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8842\",\"sale_id\":\"1090\",\"product_id\":\"1075\",\"product_code\":\"148\",\"product_name\":\"Chocolate Milkshake\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8843\",\"sale_id\":\"1090\",\"product_id\":\"1029\",\"product_code\":\"103b\",\"product_name\":\"Olmeca White (shot)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"18000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"12.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"c83c9b6996b67560ac6a80bf2319b251.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-11 21:04:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1595, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"332\",\"date\":\"2023-12-11 22:26:56\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"41425.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"t2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4401\",\"suspend_id\":\"332\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"17800.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4402\",\"suspend_id\":\"332\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4403\",\"suspend_id\":\"332\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4404\",\"suspend_id\":\"332\",\"product_id\":\"1003\",\"product_code\":\"85\",\"product_name\":\"4th Street White\",\"net_unit_price\":\"9000.0000\",\"unit_price\":\"9000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-11 21:33:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1596, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1089\",\"date\":\"2023-12-11 21:56:48\",\"reference_no\":\"SALE2023\\/12\\/0364\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"35700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2677.5000\",\"total_tax\":\"2677.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1918.8800\",\"grand_total\":\"40296.3800\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"18\",\"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\":\"6692233fb63ce88fd586418dd1710b18f201feb5123e064294a2104933a6bc41\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-11 21:34:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1597, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"331\",\"date\":\"2023-12-11 21:57:58\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"40522.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"VIP1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4388\",\"suspend_id\":\"331\",\"product_id\":\"1062\",\"product_code\":\"135\",\"product_name\":\"Tequila Sunrise\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4389\",\"suspend_id\":\"331\",\"product_id\":\"1072\",\"product_code\":\"145\",\"product_name\":\"Long Island Iced Tea\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4390\",\"suspend_id\":\"331\",\"product_id\":\"947\",\"product_code\":\"41\",\"product_name\":\"Fried squid\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4391\",\"suspend_id\":\"331\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4392\",\"suspend_id\":\"331\",\"product_id\":\"1157\",\"product_code\":\"PR10012\",\"product_name\":\"chicken and chip\",\"net_unit_price\":\"6500.0000\",\"unit_price\":\"6500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-11 21:57:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1598, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1093\",\"date\":\"2023-12-11 22:57:23\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0722\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"35900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2692.5000\",\"total_tax\":\"2692.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1929.6300\",\"grand_total\":\"40522.1300\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"31\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"1\",\"paid\":\"40522.1300\",\"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\":\"ac703fec82b9f76d5785ad3d93786f655cdff24889be6cbe5b8097d2b464e287\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8870\",\"sale_id\":\"1093\",\"product_id\":\"1062\",\"product_code\":\"135\",\"product_name\":\"Tequila Sunrise\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8871\",\"sale_id\":\"1093\",\"product_id\":\"1072\",\"product_code\":\"145\",\"product_name\":\"Long Island Iced Tea\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8872\",\"sale_id\":\"1093\",\"product_id\":\"947\",\"product_code\":\"41\",\"product_name\":\"Fried squid\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"6900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8873\",\"sale_id\":\"1093\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"15000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8874\",\"sale_id\":\"1093\",\"product_id\":\"1157\",\"product_code\":\"PR10012\",\"product_name\":\"chicken and chip\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"6500.0000\",\"unit_price\":\"6500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-11 21:58:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1599, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"333\",\"date\":\"2023-12-11 22:59:54\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"42215.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"vip1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4405\",\"suspend_id\":\"333\",\"product_id\":\"1062\",\"product_code\":\"135\",\"product_name\":\"Tequila Sunrise\",\"net_unit_price\":\"3500.0000\",\"unit_price\":\"3500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4406\",\"suspend_id\":\"333\",\"product_id\":\"1072\",\"product_code\":\"145\",\"product_name\":\"Long Island Iced Tea\",\"net_unit_price\":\"4000.0000\",\"unit_price\":\"4000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"4000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4407\",\"suspend_id\":\"333\",\"product_id\":\"947\",\"product_code\":\"41\",\"product_name\":\"Fried squid\",\"net_unit_price\":\"6900.0000\",\"unit_price\":\"6900.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4408\",\"suspend_id\":\"333\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4409\",\"suspend_id\":\"333\",\"product_id\":\"1157\",\"product_code\":\"PR10012\",\"product_name\":\"chicken and chip\",\"net_unit_price\":\"6500.0000\",\"unit_price\":\"6500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"6500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4410\",\"suspend_id\":\"333\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4411\",\"suspend_id\":\"333\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-11 22:00:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1600, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1087\",\"date\":\"2023-12-11 21:11:00\",\"reference_no\":\"SALE2023\\/12\\/0363\",\"customer_id\":\"38\",\"customer\":\"VIP 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"37400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2805.0000\",\"total_tax\":\"2805.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"2010.2500\",\"grand_total\":\"42215.2500\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-11 22:44:38\",\"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\":\"d7d4720255a2ddd29921a48fd273492f2303b7d6a97f4f1c9e23c9036e011820\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-11 22:15:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1601, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"334\",\"date\":\"2023-12-11 23:33:00\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"5\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"40635.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T6\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4415\",\"suspend_id\":\"334\",\"product_id\":\"956\",\"product_code\":\"50\",\"product_name\":\"Mixed set (large)\",\"net_unit_price\":\"15000.0000\",\"unit_price\":\"15000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"15000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4416\",\"suspend_id\":\"334\",\"product_id\":\"1117\",\"product_code\":\"185\",\"product_name\":\"FRENCH  FRIES\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4417\",\"suspend_id\":\"334\",\"product_id\":\"1126\",\"product_code\":\"996\",\"product_name\":\"HOT TEA\",\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"4500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4418\",\"suspend_id\":\"334\",\"product_id\":\"957\",\"product_code\":\"50b\",\"product_name\":\"Mixed set (small)\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-11 22:33:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1602, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1091\",\"date\":\"2023-12-11 22:23:06\",\"reference_no\":\"SALE2023\\/12\\/0365\",\"customer_id\":\"26\",\"customer\":\"Table 6\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"36000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2700.0000\",\"total_tax\":\"2700.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1935.0000\",\"grand_total\":\"40635.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"11\",\"updated_by\":\"11\",\"updated_at\":\"2023-12-11 23:09:21\",\"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\":\"ade5d7a564a09818995f47390fcac38ced3747fe070930f845fdb1d736bff99e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-11 22:39:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1603, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"336\",\"date\":\"2023-12-12 14:04:25\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"7\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"32508.0000\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T1\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4425\",\"suspend_id\":\"336\",\"product_id\":\"942\",\"product_code\":\"38b\",\"product_name\":\"Fried spring rolls (stuffed with shrimp)\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4426\",\"suspend_id\":\"336\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4427\",\"suspend_id\":\"336\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4428\",\"suspend_id\":\"336\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4429\",\"suspend_id\":\"336\",\"product_id\":\"1051\",\"product_code\":\"124\",\"product_name\":\"Coca Cola\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4430\",\"suspend_id\":\"336\",\"product_id\":\"1086\",\"product_code\":\"159\",\"product_name\":\"Thai Tea\",\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"2000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4431\",\"suspend_id\":\"336\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-12 13:59:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1604, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"337\",\"date\":\"2023-12-12 16:54:07\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"10\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"45940.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4432\",\"suspend_id\":\"337\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"net_unit_price\":\"9900.0000\",\"unit_price\":\"9900.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"29700.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4433\",\"suspend_id\":\"337\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4434\",\"suspend_id\":\"337\",\"product_id\":\"1059\",\"product_code\":\"132\",\"product_name\":\"Bottle Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4435\",\"suspend_id\":\"337\",\"product_id\":\"1077\",\"product_code\":\"150\",\"product_name\":\"Oreo Milkshake\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-12 15:57:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1605, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1101\",\"date\":\"2023-12-12 16:34:34\",\"reference_no\":\"SALE2023\\/12\\/0368\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"40700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3052.5000\",\"total_tax\":\"3052.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"2187.6300\",\"grand_total\":\"45940.1300\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"17\",\"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\":\"ace33fa8266fa30a06ebf5f6e3d0953fe1f850167b383971d34f6d93ed76d924\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-12 17:04:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1606, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1099\",\"date\":\"2023-12-12 13:30:46\",\"reference_no\":\"SALE2023\\/12\\/0367\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"28800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2160.0000\",\"total_tax\":\"2160.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1548.0000\",\"grand_total\":\"32508.0000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-12-12 13:54:17\",\"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\":\"0f5e94c69049160ee433747a7964825b85c63ed14d3ccb9197aadf4552388b1c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-12 17:04:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1607, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1097\",\"date\":\"2023-12-12 12:25:07\",\"reference_no\":\"SALE2023\\/12\\/0366\",\"customer_id\":\"24\",\"customer\":\"Table 3\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"46900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3517.5000\",\"total_tax\":\"3517.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"2520.8800\",\"grand_total\":\"52938.3800\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-12-12 13:12:03\",\"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\":\"242425026ace24fcc3d747c22a5138acc9c56d0850818d2c3226cd7739486ff2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-12 17:05:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1608, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"338\",\"date\":\"2023-12-12 18:07:47\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"8\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"38603.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T4\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4439\",\"suspend_id\":\"338\",\"product_id\":\"932\",\"product_code\":\"34\",\"product_name\":\"Spicy glass noodles salad\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4440\",\"suspend_id\":\"338\",\"product_id\":\"860\",\"product_code\":\"4b\",\"product_name\":\"Fried rice with shrimps\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4441\",\"suspend_id\":\"338\",\"product_id\":\"954\",\"product_code\":\"48\",\"product_name\":\"Beef hot pan\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4442\",\"suspend_id\":\"338\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4443\",\"suspend_id\":\"338\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4444\",\"suspend_id\":\"338\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-12 17:08:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1609, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1103\",\"date\":\"2023-12-12 17:27:52\",\"reference_no\":\"SALE2023\\/12\\/0369\",\"customer_id\":\"7\",\"customer\":\"Table 4\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"2565.0000\",\"total_tax\":\"2565.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1838.2500\",\"grand_total\":\"38603.2500\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"updated_by\":\"10\",\"updated_at\":\"2023-12-12 18:06:17\",\"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\":\"43bb3b389972de6de3de06586dda340d8591fec1df9c5dd4e5ea8bc717872ea4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-12 19:08:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1610, 'POS Bill is being deleted by mayreelishmum (User Id: 31)', '{\"model\":{\"id\":\"339\",\"date\":\"2023-12-12 21:11:46\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"4\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"22913.6300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4445\",\"suspend_id\":\"339\",\"product_id\":\"1111\",\"product_code\":\"PR999\",\"product_name\":\"TAKE AWAY\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4446\",\"suspend_id\":\"339\",\"product_id\":\"871\",\"product_code\":\"8e\",\"product_name\":\"Pad Thai (mixed)\",\"net_unit_price\":\"10400.0000\",\"unit_price\":\"10400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10400.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10400.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4447\",\"suspend_id\":\"339\",\"product_id\":\"946\",\"product_code\":\"40\",\"product_name\":\"Fried shrimp\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-12 20:12:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1611, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1105\",\"date\":\"2023-12-12 21:10:21\",\"reference_no\":\"SALE2023\\/12\\/0370\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"20300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"1522.5000\",\"total_tax\":\"1522.5000\",\"shipping\":\"0.0000\",\"service_charge\":\"1091.1300\",\"grand_total\":\"22913.6300\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"acaeef0ba725be50b2bd7acb873a6b2c06027d280f5072529c0d42b7a86d79c3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-12 21:01:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1612, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1108\",\"date\":\"2023-12-12 21:46:39\",\"reference_no\":\"SALE2023\\/12\\/0372\",\"customer_id\":\"4\",\"customer\":\"Table 1\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"225.0000\",\"total_tax\":\"225.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"161.2500\",\"grand_total\":\"3386.2500\",\"sale_status\":\"pending\",\"payment_status\":\"pending\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"10\",\"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\":\"cb37514fa9b3873ec7df7054d63c211bb797d739f360255d8f9ac02459ae6ef4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-12 21:07:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1613, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1109\",\"date\":\"2023-12-12 22:06:08\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0731\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"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\":\"4\",\"order_tax\":\"2430.0000\",\"total_tax\":\"2430.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"1741.5000\",\"grand_total\":\"36571.5000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"31\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"36571.5000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"aa4b83cdaffb30c30409cfe2d62f2096965325036bb9d1cf8d014feb0b41c3ba\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8995\",\"sale_id\":\"1109\",\"product_id\":\"885\",\"product_code\":\"13\",\"product_name\":\"Chicken northern style curry noodles\",\"product_type\":\"standard\",\"option_id\":null,\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"8996\",\"sale_id\":\"1109\",\"product_id\":\"959\",\"product_code\":\"52\",\"product_name\":\"Sago pearls\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"4500.0000\",\"unit_price\":\"4500.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"22500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"4500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"no_image.png\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-12 21:07:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1614, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"340\",\"date\":\"2023-12-12 22:24:44\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"9\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"44924.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4448\",\"suspend_id\":\"340\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4449\",\"suspend_id\":\"340\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4450\",\"suspend_id\":\"340\",\"product_id\":\"1015\",\"product_code\":\"95b\",\"product_name\":\"Gordon Gin (shot)\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4451\",\"suspend_id\":\"340\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4452\",\"suspend_id\":\"340\",\"product_id\":\"957\",\"product_code\":\"50b\",\"product_name\":\"Mixed set (small)\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4453\",\"suspend_id\":\"340\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4454\",\"suspend_id\":\"340\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4455\",\"suspend_id\":\"340\",\"product_id\":\"1159\",\"product_code\":\"PR11109\",\"product_name\":\"schweppes tonic water \",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-12 21:28:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1615, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"335\",\"date\":\"2023-12-12 12:48:10\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"6\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"51245.2500\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"31\",\"suspend_note\":\"T3\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4419\",\"suspend_id\":\"335\",\"product_id\":\"864\",\"product_code\":\"5\",\"product_name\":\"Tom yum fried rice\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"7900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4420\",\"suspend_id\":\"335\",\"product_id\":\"911\",\"product_code\":\"24\",\"product_name\":\"Tom Yum (shrimp\\/clear soup)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4421\",\"suspend_id\":\"335\",\"product_id\":\"920\",\"product_code\":\"27d\",\"product_name\":\"Stir-fried with holy basil (mixed meat)\",\"net_unit_price\":\"10400.0000\",\"unit_price\":\"10400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10400.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10400.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4422\",\"suspend_id\":\"335\",\"product_id\":\"931\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"10200.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4423\",\"suspend_id\":\"335\",\"product_id\":\"1092\",\"product_code\":\"165\",\"product_name\":\"Strawberry Juice\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"5000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4424\",\"suspend_id\":\"335\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-12 21:28:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1616, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1113\",\"date\":\"2023-12-12 22:28:45\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0735\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"45400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3405.0000\",\"total_tax\":\"3405.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"2440.2500\",\"grand_total\":\"51245.2500\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"51245.2500\",\"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\":\"663aa2ab75d52f7944286a0067699be1a52ffeff50a6e123de6e05a088f0c4de\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"9068\",\"sale_id\":\"1113\",\"product_id\":\"864\",\"product_code\":\"5\",\"product_name\":\"Tom yum fried rice\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"7900.0000\",\"unit_price\":\"7900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"7900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"7900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"9069\",\"sale_id\":\"1113\",\"product_id\":\"911\",\"product_code\":\"24\",\"product_name\":\"Tom Yum (shrimp\\/clear soup)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"9070\",\"sale_id\":\"1113\",\"product_id\":\"920\",\"product_code\":\"27d\",\"product_name\":\"Stir-fried with holy basil (mixed meat)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"10400.0000\",\"unit_price\":\"10400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"9071\",\"sale_id\":\"1113\",\"product_id\":\"931\",\"product_code\":\"33\",\"product_name\":\"Stir-fried crab with curry powder\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"10200.0000\",\"unit_price\":\"10200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"9072\",\"sale_id\":\"1113\",\"product_id\":\"1092\",\"product_code\":\"165\",\"product_name\":\"Strawberry Juice\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"5000.0000\",\"unit_price\":\"5000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"9073\",\"sale_id\":\"1113\",\"product_id\":\"1090\",\"product_code\":\"163\",\"product_name\":\"Pineapple Juice\",\"product_type\":\"standard\",\"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\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-12 21:29:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1617, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1112\",\"date\":\"2023-12-12 22:28:21\",\"reference_no\":\"SALE\\/POS2023\\/12\\/0734\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"39800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"2985.0000\",\"total_tax\":\"2985.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"2139.2500\",\"grand_total\":\"44924.2500\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"3\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"1\",\"paid\":\"44924.2500\",\"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\":\"642a4fd22976c6143d670155c9ad03adcf8b54651489838ef87a389d829e3834\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"9060\",\"sale_id\":\"1112\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"8900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"9061\",\"sale_id\":\"1112\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"product_type\":\"standard\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"9900.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"9062\",\"sale_id\":\"1112\",\"product_id\":\"1015\",\"product_code\":\"95b\",\"product_name\":\"Gordon Gin (shot)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"ab2c2b7a2bb00ffe011c0c305072ccaa.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"9063\",\"sale_id\":\"1112\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"b70e2b136a4ad222a25e3fe5dd2551a2.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"9064\",\"sale_id\":\"1112\",\"product_id\":\"957\",\"product_code\":\"50b\",\"product_name\":\"Mixed set (small)\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"9065\",\"sale_id\":\"1112\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":\"0351e7f12fa437cfb06564e545bcdcee.jpg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"9066\",\"sale_id\":\"1112\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"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\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"},{\"id\":\"9067\",\"sale_id\":\"1112\",\"product_id\":\"1159\",\"product_code\":\"PR11109\",\"product_name\":\"schweppes tonic water \",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"QTY\"}]}', '2023-12-12 21:29:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1618, 'POS Bill is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"341\",\"date\":\"2023-12-12 22:28:09\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"count\":\"12\",\"order_discount_id\":\"\",\"order_tax_id\":\"4\",\"total\":\"52261.1300\",\"biller_id\":\"3\",\"warehouse_id\":\"1\",\"created_by\":\"3\",\"suspend_note\":\"T2\",\"shipping\":\"0.0000\",\"service_charge\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"4456\",\"suspend_id\":\"341\",\"product_id\":\"867\",\"product_code\":\"8a\",\"product_name\":\"Pad Thai (chicken)\",\"net_unit_price\":\"8900.0000\",\"unit_price\":\"8900.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"8900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"8900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4457\",\"suspend_id\":\"341\",\"product_id\":\"918\",\"product_code\":\"27b\",\"product_name\":\"Stir-fried with holy basil (shrimp)\",\"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\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"9900.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"9900.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4458\",\"suspend_id\":\"341\",\"product_id\":\"1015\",\"product_code\":\"95b\",\"product_name\":\"Gordon Gin (shot)\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"2.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4459\",\"suspend_id\":\"341\",\"product_id\":\"1054\",\"product_code\":\"127\",\"product_name\":\"Team Soda Water\",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4460\",\"suspend_id\":\"341\",\"product_id\":\"957\",\"product_code\":\"50b\",\"product_name\":\"Mixed set (small)\",\"net_unit_price\":\"10000.0000\",\"unit_price\":\"10000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10000.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"10000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4461\",\"suspend_id\":\"341\",\"product_id\":\"1115\",\"product_code\":\"123a\",\"product_name\":\"bottle singha beer\",\"net_unit_price\":\"5500.0000\",\"unit_price\":\"5500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"5500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4462\",\"suspend_id\":\"341\",\"product_id\":\"865\",\"product_code\":\"6\",\"product_name\":\"Rice\",\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"1500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4463\",\"suspend_id\":\"341\",\"product_id\":\"1159\",\"product_code\":\"PR11109\",\"product_name\":\"schweppes tonic water \",\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.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\":\"\",\"option_id\":\"0\",\"product_type\":\"standard\",\"real_unit_price\":\"500.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null},{\"id\":\"4464\",\"suspend_id\":\"341\",\"product_id\":\"1097\",\"product_code\":\"170\",\"product_name\":\"Fresh Fruit Punch\",\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"6000.0000\",\"serial_no\":\"\",\"option_id\":null,\"product_type\":\"standard\",\"real_unit_price\":\"3000.0000\",\"product_unit_id\":\"1\",\"product_unit_code\":\"QTY\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null}]}', '2023-12-12 21:55:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1619, 'Sale is being deleted by fatoom24 (User Id: 3)', '{\"model\":{\"id\":\"1107\",\"date\":\"2023-12-12 21:42:00\",\"reference_no\":\"SALE2023\\/12\\/0371\",\"customer_id\":\"5\",\"customer\":\"Table 2\",\"biller_id\":\"3\",\"biller\":\"kunakornthairestaurant\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"46800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"4\",\"order_tax\":\"3510.0000\",\"total_tax\":\"3510.0000\",\"shipping\":\"0.0000\",\"service_charge\":\"2515.5000\",\"grand_total\":\"52825.5000\",\"sale_status\":\"pending\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"9\",\"updated_by\":\"9\",\"updated_at\":\"2023-12-12 22:27:54\",\"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\":\"56338415422232baa0ba0178f65f582d9a8184f6400adf1de0423432ebb046df\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":null}', '2023-12-12 22:01:05');


#
# TABLE STRUCTURE FOR: sma_migrations
#

DROP TABLE IF EXISTS `sma_migrations`;

CREATE TABLE `sma_migrations` (
  `version` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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=utf8mb3 COLLATE=utf8mb3_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=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_order_ref` (`ref_id`, `date`, `so`, `qu`, `po`, `to`, `pos`, `do`, `pay`, `re`, `rep`, `ex`, `ppay`, `qa`) VALUES (1, '2023-10-01', 373, 3, 7, 1, 737, 1, 786, 1, 1, 1, 6, 7);


#
# 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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_pages` (`id`, `name`, `title`, `description`, `slug`, `body`, `active`, `updated_at`, `order_no`) VALUES (1, 'About Us', 'About Us', 't', 'about-us', '<p>Welcome to Kunakorn Thai Restaurant, where we invite you to embark on a culinary journey that transcends borders. Nestled in the heart of <strong>City Park, Aminu Kano Crescent Wuse 2, Abuja</strong>, our establishment is a testament to the passion we hold for bringing the authentic flavors of Thailand to your table.</p><p>At Kunakorn, we understand that great food is not just about taste but an experience that lingers in the memory. Our chefs, dedicated to preserving the richness of Thai cuisine, craft each dish with precision, using traditional recipes and the finest ingredients. The result is a symphony of flavors that captures the essence of Thailand\\\'s culinary artistry.</p><p>Step into our inviting space, where the warm ambiance mirrors the hospitality found on the bustling streets of Bangkok. Whether you\\\'re a seasoned Thai food enthusiast or a first-time adventurer, our diverse menu promises a delightful array of options. From the tantalizing aromas to the perfect blend of sweet, sour, salty, and spicy, every dish at Kunakorn Thai Restaurant is a tribute to the vibrant and diverse tapestry of Thai cuisine.</p><p>We believe in more than just providing a meal; we aim to create an atmosphere where friends and family come together to celebrate life\\\'s moments. Kunakorn is more than a restaurant; it\\\'s a place where each bite tells a story, and every meal is a celebration.</p><p>Join us at Kunakorn Thai Restaurant—your gateway to an authentic Thai dining experience where every dish is a passport to the rich cultural heritage of Thailand. We look forward to sharing the warmth and flavors of our kitchen with you.</p>', 1, '2023-11-13 04:49:34', 1);


#
# 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=792 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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 (1, '2023-10-15 18:23:42', 1, NULL, NULL, 'IPAY2023/10/0001', NULL, 'cash', '', '', '', '', '', '', '22500.0000', NULL, 2, NULL, 'received', '', '22500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2, '2023-10-15 19:08:09', 2, NULL, NULL, 'IPAY2023/10/0002', NULL, 'cash', '', '', '', '', '', '', '21800.0000', NULL, 2, NULL, 'received', '', '21800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3, '2023-10-15 19:08:35', 3, NULL, NULL, 'IPAY2023/10/0003', NULL, 'cash', '', '', '', '', '', '', '7900.0000', NULL, 2, NULL, 'received', '', '7900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (4, '2023-10-18 12:05:04', 5, NULL, NULL, 'IPAY2023/10/0004', NULL, 'cash', '', '', '', '', '', '', '9567.5000', NULL, 1, NULL, 'received', '', '9567.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5, '2023-10-18 20:08:30', 6, NULL, NULL, 'IPAY2023/10/0005', NULL, 'cash', '', '', '', '', '', '', '25477.5000', NULL, 2, NULL, 'received', '', '25477.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (6, '2023-10-18 20:24:10', 7, NULL, NULL, 'IPAY2023/10/0006', NULL, 'cash', '', '', '', '', '', '', '73852.5000', NULL, 2, NULL, 'received', '', '73852.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (7, '2023-10-18 20:26:21', 8, NULL, NULL, 'IPAY2023/10/0007', NULL, 'cash', '', '', '', '', '', '', '23327.5000', NULL, 2, NULL, 'received', '', '23327.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (8, '2023-10-18 20:45:14', 9, NULL, NULL, 'IPAY2023/10/0008', NULL, 'cash', '', '', '', '', '', '', '24700.0000', NULL, 2, NULL, 'received', '', '24700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (9, '2023-10-18 20:45:52', 10, NULL, NULL, 'IPAY2023/10/0009', NULL, 'cash', '', '', '', '', '', '', '20900.0000', NULL, 2, NULL, 'received', '', '20900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (10, '2023-10-18 20:46:12', 11, NULL, NULL, 'IPAY2023/10/0010', NULL, 'cash', '', '', '', '', '', '', '5375.0000', NULL, 2, NULL, 'received', '', '5375.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (11, '2023-10-19 14:35:36', 12, NULL, NULL, 'IPAY2023/10/0011', NULL, 'cash', '', '', '', '', '', '', '2150.0000', NULL, 1, NULL, 'received', '', '2150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (12, '2023-10-19 14:50:32', 13, NULL, NULL, 'IPAY2023/10/0012', NULL, 'cash', '', '', '', '', '', '', '79872.5000', NULL, 1, NULL, 'received', '', '79872.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (13, '2023-10-19 15:00:38', 14, NULL, NULL, 'IPAY2023/10/0013', NULL, 'cash', '', '', '', '', '', '', '10642.5000', NULL, 1, NULL, 'received', '', '10642.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (14, '2023-10-19 17:40:34', 15, NULL, NULL, 'IPAY2023/10/0014', NULL, 'cash', '', '', '', '', '', '', '9567.5000', NULL, 1, NULL, 'received', '', '9567.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (15, '2023-10-19 17:41:56', 16, NULL, NULL, 'IPAY2023/10/0015', NULL, 'cash', '', '', '', '', '', '', '7417.5000', NULL, 1, NULL, 'received', '', '7417.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (16, '2023-10-19 19:19:45', 17, NULL, NULL, 'IPAY2023/10/0016', NULL, 'cash', '', '', '', '', '', '', '34077.5000', NULL, 1, NULL, 'received', '', '34077.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (17, '2023-10-19 19:40:12', 18, NULL, NULL, 'IPAY2023/10/0017', NULL, 'cash', '', '', '', '', '', '', '106425.0000', NULL, 1, NULL, 'received', '', '106425.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (18, '2023-10-19 19:47:50', 19, NULL, NULL, 'IPAY2023/10/0018', NULL, 'cash', '', '', '', '', '', '', '712510.0000', NULL, 1, NULL, 'received', '', '712510.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (19, '2023-10-19 19:53:55', 20, NULL, NULL, 'IPAY2023/10/0019', NULL, 'cash', '', '', '', '', '', '', '3762.5000', NULL, 1, NULL, 'received', '', '3762.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (20, '2023-10-19 19:54:49', 21, NULL, NULL, 'IPAY2023/10/0020', NULL, 'cash', '', '', '', '', '', '', '6987.5000', NULL, 1, NULL, 'received', '', '6987.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (21, '2023-10-19 20:00:21', 22, NULL, NULL, 'IPAY2023/10/0021', NULL, 'cash', '', '', '', '', '', '', '18812.5000', NULL, 1, NULL, 'received', '', '18812.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (22, '2023-10-19 20:25:56', 23, NULL, NULL, 'IPAY2023/10/0022', NULL, 'cash', '', '', '', '', '', '', '4300.0000', NULL, 1, NULL, 'received', '', '4300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (23, '2023-10-19 20:26:52', 24, NULL, NULL, 'IPAY2023/10/0023', NULL, 'cash', '', '', '', '', '', '', '17092.5000', NULL, 1, NULL, 'received', '', '17092.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (24, '2023-10-19 20:29:53', 25, NULL, NULL, 'IPAY2023/10/0024', NULL, 'cash', '', '', '', '', '', '', '45257.5000', NULL, 1, NULL, 'received', '', '45257.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (25, '2023-10-19 20:36:54', 26, NULL, NULL, 'IPAY2023/10/0025', NULL, 'cash', '', '', '', '', '', '', '42140.0000', NULL, 1, NULL, 'received', '', '42140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (26, '2023-10-19 20:46:28', 27, NULL, NULL, 'IPAY2023/10/0026', NULL, 'cash', '', '', '', '', '', '', '1612.5000', NULL, 1, NULL, 'received', '', '1612.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (27, '2023-10-19 21:04:07', 28, NULL, NULL, 'IPAY2023/10/0027', NULL, 'cash', '', '', '', '', '', '', '14942.5000', NULL, 1, NULL, 'received', '', '14942.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (28, '2023-10-19 21:09:20', 29, NULL, NULL, 'IPAY2023/10/0028', NULL, 'cash', '', '', '', '', '', '', '6450.0000', NULL, 1, NULL, 'received', '', '6450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (29, '2023-10-19 21:10:28', 30, NULL, NULL, 'IPAY2023/10/0029', NULL, 'cash', '', '', '', '', '', '', '32035.0000', NULL, 1, NULL, 'received', '', '32035.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (30, '2023-10-19 21:12:01', 31, NULL, NULL, 'IPAY2023/10/0030', NULL, 'cash', '', '', '', '', '', '', '3225.0000', NULL, 1, NULL, 'received', '', '3225.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (31, '2023-10-19 21:12:51', 32, NULL, NULL, 'IPAY2023/10/0031', NULL, 'cash', '', '', '', '', '', '', '109112.5000', NULL, 1, NULL, 'received', '', '109112.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (32, '2023-10-19 21:15:51', 33, NULL, NULL, 'IPAY2023/10/0032', NULL, 'cash', '', '', '', '', '', '', '537.5000', NULL, 1, NULL, 'received', '', '537.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (33, '2023-10-19 21:23:13', 34, NULL, NULL, 'IPAY2023/10/0033', NULL, 'cash', '', '', '', '', '', '', '19780.0000', NULL, 1, NULL, 'received', '', '19780.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (34, '2023-10-19 21:40:07', 35, NULL, NULL, 'IPAY2023/10/0034', NULL, 'cash', '', '', '', '', '', '', '174472.5000', NULL, 1, NULL, 'received', '', '174472.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (35, '2023-10-19 21:45:51', 36, NULL, NULL, 'IPAY2023/10/0035', NULL, 'cash', '', '', '', '', '', '', '14405.0000', NULL, 1, NULL, 'received', '', '14405.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (36, '2023-10-19 21:46:43', 37, NULL, NULL, 'IPAY2023/10/0036', NULL, 'cash', '', '', '', '', '', '', '12900.0000', NULL, 1, NULL, 'received', '', '12900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (37, '2023-10-19 21:47:22', 38, NULL, NULL, 'IPAY2023/10/0037', NULL, 'cash', '', '', '', '', '', '', '16985.0000', NULL, 1, NULL, 'received', '', '16985.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (38, '2023-10-19 22:04:40', 39, NULL, NULL, 'IPAY2023/10/0038', NULL, 'cash', '', '', '', '', '', '', '35900.0000', NULL, 1, NULL, 'received', '', '35900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (39, '2023-10-19 22:05:23', 40, NULL, NULL, 'IPAY2023/10/0039', NULL, 'cash', '', '', '', '', '', '', '3225.0000', NULL, 1, NULL, 'received', '', '3225.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (40, '2023-10-19 22:07:00', 39, NULL, NULL, 'IPAY2023/10/0040', NULL, 'cash', '', '', '', '', '', 'Visa', '2692.5000', NULL, 1, NULL, 'received', '', '2692.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (41, '2023-10-19 22:08:08', 41, NULL, NULL, 'IPAY2023/10/0040', NULL, 'cash', '', '', '', '', '', '', '8492.5000', NULL, 1, NULL, 'received', '', '8492.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (42, '2023-10-19 22:19:58', 42, NULL, NULL, 'IPAY2023/10/0041', NULL, 'cash', '', '', '', '', '', '', '6987.5000', NULL, 1, NULL, 'received', '', '6987.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (43, '2023-10-19 22:20:27', 43, NULL, NULL, 'IPAY2023/10/0042', NULL, 'cash', '', '', '', '', '', '', '9675.0000', NULL, 1, NULL, 'received', '', '9675.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (44, '2023-10-19 22:24:15', 44, NULL, NULL, 'IPAY2023/10/0043', NULL, 'cash', '', '', '', '', '', '', '9567.5000', NULL, 1, NULL, 'received', '', '9567.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (45, '2023-10-19 22:24:00', 45, NULL, NULL, 'IPAY2023/10/0044', NULL, 'cash', '', '', '', '', '', 'Visa', '-9567.5000', NULL, 1, NULL, 'returned', NULL, '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (46, '2023-10-19 22:34:27', 46, NULL, NULL, 'IPAY2023/10/0045', NULL, 'cash', '', '', '', '', '', '', '30637.5000', NULL, 1, NULL, 'received', '', '30637.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (47, '2023-10-19 23:11:17', 47, NULL, NULL, 'IPAY2023/10/0046', NULL, 'cash', '', '', '', '', '', '', '23435.0000', NULL, 1, NULL, 'received', '', '23435.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (48, '2023-10-20 14:55:14', 48, NULL, NULL, 'IPAY2023/10/0047', NULL, 'cash', '', '', '', '', '', '', '1075.0000', NULL, 2, NULL, 'received', '', '1075.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (49, '2023-10-20 17:50:04', 49, NULL, NULL, 'IPAY2023/10/0048', NULL, 'cash', '', '', '', '', '', '', '116315.0000', NULL, 2, NULL, 'received', '', '116315.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (50, '2023-10-20 17:52:25', 50, NULL, NULL, 'IPAY2023/10/0049', NULL, 'cash', '', '', '', '', '', '', '537.5000', NULL, 2, NULL, 'received', '', '537.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (51, '2023-10-20 18:37:27', 51, NULL, NULL, 'IPAY2023/10/0050', NULL, 'cash', '', '', '', '', '', '', '45150.0000', NULL, 2, NULL, 'received', '', '45150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (52, '2023-10-20 18:38:08', 52, NULL, NULL, 'IPAY2023/10/0051', NULL, 'cash', '', '', '', '', '', '', '6450.0000', NULL, 2, NULL, 'received', '', '6450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (53, '2023-10-20 18:54:38', 53, NULL, NULL, 'IPAY2023/10/0052', NULL, 'cash', '', '', '', '', '', '', '7417.5000', NULL, 2, NULL, 'received', '', '7417.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (54, '2023-10-20 22:13:48', 54, NULL, NULL, 'IPAY2023/10/0053', NULL, 'cash', '', '', '', '', '', '', '97180.0000', NULL, 2, NULL, 'received', '', '97180.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (55, '2023-10-20 22:17:32', 55, NULL, NULL, 'IPAY2023/10/0054', NULL, 'cash', '', '', '', '', '', '', '9567.5000', NULL, 2, NULL, 'received', '', '9567.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (56, '2023-10-20 22:59:18', 56, NULL, NULL, 'IPAY2023/10/0055', NULL, 'cash', '', '', '', '', '', '', '10857.5000', NULL, 2, NULL, 'received', '', '10857.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (57, '2023-10-20 23:00:12', 57, NULL, NULL, 'IPAY2023/10/0056', NULL, 'cash', '', '', '', '', '', '', '2150.0000', NULL, 2, NULL, 'received', '', '2150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (58, '2023-10-20 23:01:32', 58, NULL, NULL, 'IPAY2023/10/0057', NULL, 'cash', '', '', '', '', '', '', '30315.0000', NULL, 2, NULL, 'received', '', '30315.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (59, '2023-10-20 23:39:03', 59, NULL, NULL, 'IPAY2023/10/0058', NULL, 'cash', '', '', '', '', '', '', '47730.0000', NULL, 2, NULL, 'received', '', '47730.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (60, '2023-10-21 11:34:39', 60, NULL, NULL, 'IPAY2023/10/0059', NULL, 'cash', '', '', '', '', '', '', '9675.0000', NULL, 2, NULL, 'received', '', '9675.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (61, '2023-10-21 12:43:10', 61, NULL, NULL, 'IPAY2023/10/0060', NULL, 'cash', '', '', '', '', '', '', '18060.0000', NULL, 2, NULL, 'received', '', '18060.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (62, '2023-10-21 12:43:29', 62, NULL, NULL, 'IPAY2023/10/0061', NULL, 'cash', '', '', '', '', '', '', '62995.0000', NULL, 2, NULL, 'received', '', '62995.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (63, '2023-10-21 16:48:35', 63, NULL, NULL, 'IPAY2023/10/0062', NULL, 'cash', '', '', '', '', '', '', '537.5000', NULL, 2, NULL, 'received', '', '537.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (64, '2023-10-21 16:51:42', 64, NULL, NULL, 'IPAY2023/10/0063', NULL, 'cash', '', '', '', '', '', '', '18597.5000', NULL, 2, NULL, 'received', '', '18597.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (65, '2023-10-21 18:27:50', 65, NULL, NULL, 'IPAY2023/10/0064', NULL, 'cash', '', '', '', '', '', '', '93740.0000', NULL, 2, NULL, 'received', '', '93740.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (66, '2023-10-21 18:35:26', 66, NULL, NULL, 'IPAY2023/10/0065', NULL, 'cash', '', '', '', '', '', '', '20210.0000', NULL, 2, NULL, 'received', '', '20210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (67, '2023-10-22 12:25:15', 67, NULL, NULL, 'IPAY2023/10/0066', NULL, 'cash', '', '', '', '', '', '', '202315.0000', NULL, 2, NULL, 'received', '', '202315.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (68, '2023-10-22 12:42:00', 68, NULL, NULL, 'IPAY2023/10/0067', NULL, 'cash', '', '', '', '', '', '', '1612.5000', NULL, 2, NULL, 'received', '', '1612.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (69, '2023-10-22 13:18:28', 69, NULL, NULL, 'IPAY2023/10/0068', NULL, 'cash', '', '', '', '', '', '', '21285.0000', NULL, 2, NULL, 'received', '', '21285.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (70, '2023-10-22 14:30:27', 70, NULL, NULL, 'IPAY2023/10/0069', NULL, 'cash', '', '', '', '', '', '', '19350.0000', NULL, 2, NULL, 'received', '', '19350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (71, '2023-10-22 16:30:25', 71, NULL, NULL, 'IPAY2023/10/0070', NULL, 'cash', '', '', '', '', '', '', '17522.5000', NULL, 2, NULL, 'received', '', '17522.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (72, '2023-10-22 17:05:57', 72, NULL, NULL, 'IPAY2023/10/0071', NULL, 'cash', '', '', '', '', '', '', '7525.0000', NULL, 2, NULL, 'received', '', '7525.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (73, '2023-10-22 17:26:08', 73, NULL, NULL, 'IPAY2023/10/0072', NULL, 'cash', '', '', '', '', '', '', '16985.0000', NULL, 2, NULL, 'received', '', '16985.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (74, '2023-10-22 18:22:58', 74, NULL, NULL, 'IPAY2023/10/0073', NULL, 'cash', '', '', '', '', '', '', '55900.0000', NULL, 2, NULL, 'received', '', '55900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (75, '2023-10-22 19:39:47', 75, NULL, NULL, 'IPAY2023/10/0074', NULL, 'cash', '', '', '', '', '', '', '7417.5000', NULL, 2, NULL, 'received', '', '7417.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (76, '2023-10-22 20:10:59', 76, NULL, NULL, 'IPAY2023/10/0075', NULL, 'cash', '', '', '', '', '', '', '28810.0000', NULL, 2, NULL, 'received', '', '28810.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (77, '2023-10-22 20:52:50', 77, NULL, NULL, 'IPAY2023/10/0076', NULL, 'cash', '', '', '', '', '', '', '26660.0000', NULL, 2, NULL, 'received', '', '26660.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (78, '2023-10-22 21:32:55', 78, NULL, NULL, 'IPAY2023/10/0077', NULL, 'cash', '', '', '', '', '', '', '142007.5000', NULL, 2, NULL, 'received', '', '142007.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (79, '2023-10-22 21:35:06', 79, NULL, NULL, 'IPAY2023/10/0078', NULL, 'cash', '', '', '', '', '', '', '25047.5000', NULL, 2, NULL, 'received', '', '25047.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (80, '2023-10-22 21:36:27', 80, NULL, NULL, 'IPAY2023/10/0079', NULL, 'cash', '', '', '', '', '', '', '31497.5000', NULL, 2, NULL, 'received', '', '31497.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (81, '2023-10-23 11:06:29', 81, NULL, NULL, 'IPAY2023/10/0080', NULL, 'cash', '', '', '', '', '', '', '8600.0000', NULL, 2, NULL, 'received', '', '8600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (82, '2023-10-23 11:08:41', 82, NULL, NULL, 'IPAY2023/10/0081', NULL, 'cash', '', '', '', '', '', '', '9030.0000', NULL, 2, NULL, 'received', '', '9030.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (83, '2023-10-23 11:39:16', 83, NULL, NULL, 'IPAY2023/10/0082', NULL, 'cash', '', '', '', '', '', '', '537.5000', NULL, 2, NULL, 'received', '', '537.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (84, '2023-10-23 12:19:17', 84, NULL, NULL, 'IPAY2023/10/0083', NULL, 'cash', '', '', '', '', '', '', '18060.0000', NULL, 2, NULL, 'received', '', '18060.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (85, '2023-10-23 12:32:43', 85, NULL, NULL, 'IPAY2023/10/0084', NULL, 'cash', '', '', '', '', '', '', '102340.0000', NULL, 2, NULL, 'received', '', '102340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (86, '2023-10-23 15:28:45', 86, NULL, NULL, 'IPAY2023/10/0085', NULL, 'cash', '', '', '', '', '', '', '9675.0000', NULL, 2, NULL, 'received', '', '9675.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (87, '2023-10-23 19:00:28', 87, NULL, NULL, 'IPAY2023/10/0086', NULL, 'cash', '', '', '', '', '', '', '55147.5000', NULL, 2, NULL, 'received', '', '55147.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (88, '2023-10-23 22:02:43', 88, NULL, NULL, 'IPAY2023/10/0087', NULL, 'cash', '', '', '', '', '', '', '46870.0000', NULL, 2, NULL, 'received', '', '46870.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (89, '2023-10-23 22:05:04', 89, NULL, NULL, 'IPAY2023/10/0088', NULL, 'cash', '', '', '', '', '', '', '3225.0000', NULL, 2, NULL, 'received', '', '3225.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (90, '2023-10-23 22:24:01', 90, NULL, NULL, 'IPAY2023/10/0089', NULL, 'cash', '', '', '', '', '', '', '60092.5000', NULL, 2, NULL, 'received', '', '60092.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (91, '2023-10-23 23:29:44', 91, NULL, NULL, 'IPAY2023/10/0090', NULL, 'cash', '', '', '', '', '', '', '28702.5000', NULL, 2, NULL, 'received', '', '28702.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (92, '2023-10-23 23:34:50', 92, NULL, NULL, 'IPAY2023/10/0091', NULL, 'cash', '', '', '', '', '', '', '190490.0000', NULL, 2, NULL, 'received', '', '190490.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (93, '2023-10-23 23:36:41', 93, NULL, NULL, 'IPAY2023/10/0092', NULL, 'cash', '', '', '', '', '', '', '26552.5000', NULL, 2, NULL, 'received', '', '26552.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (94, '2023-10-23 23:38:39', 94, NULL, NULL, 'IPAY2023/10/0093', NULL, 'cash', '', '', '', '', '', '', '33217.5000', NULL, 2, NULL, 'received', '', '33217.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (95, '2023-10-23 23:44:22', 95, NULL, NULL, 'IPAY2023/10/0094', NULL, 'cash', '', '', '', '', '', '', '113412.5000', NULL, 2, NULL, 'received', '', '113412.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (96, '2023-10-23 23:46:19', 96, NULL, NULL, 'IPAY2023/10/0095', NULL, 'cash', '', '', '', '', '', '', '24080.0000', NULL, 2, NULL, 'received', '', '24080.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (97, '2023-10-24 12:35:15', 97, NULL, NULL, 'IPAY2023/10/0096', NULL, 'cash', '', '', '', '', '', '', '18705.0000', NULL, 2, NULL, 'received', '', '18705.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (98, '2023-10-24 13:51:31', 98, NULL, NULL, 'IPAY2023/10/0097', NULL, 'cash', '', '', '', '', '', '', '10105.0000', NULL, 2, NULL, 'received', '', '10105.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (99, '2023-10-24 19:21:54', 99, NULL, NULL, 'IPAY2023/10/0098', NULL, 'cash', '', '', '', '', '', '', '45150.0000', NULL, 2, NULL, 'received', '', '45150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (100, '2023-10-24 19:24:02', 100, NULL, NULL, 'IPAY2023/10/0099', NULL, 'cash', '', '', '', '', '', '', '23435.0000', NULL, 2, NULL, 'received', '', '23435.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (101, '2023-10-24 19:25:43', 101, NULL, NULL, 'IPAY2023/10/0100', NULL, 'cash', '', '', '', '', '', '', '4300.0000', NULL, 2, NULL, 'received', '', '4300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (102, '2023-10-24 20:01:24', 102, NULL, NULL, 'IPAY2023/10/0101', NULL, 'cash', '', '', '', '', '', '', '39345.0000', NULL, 2, NULL, 'received', '', '39345.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (103, '2023-10-24 21:11:48', 103, NULL, NULL, 'IPAY2023/10/0102', NULL, 'cash', '', '', '', '', '', '', '537.5000', NULL, 2, NULL, 'received', '', '537.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (104, '2023-10-24 21:26:20', 104, NULL, NULL, 'IPAY2023/10/0103', NULL, 'cash', '', '', '', '', '', '', '10105.0000', NULL, 2, NULL, 'received', '', '10105.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (105, '2023-10-24 22:44:09', 105, NULL, NULL, 'IPAY2023/10/0104', NULL, 'cash', '', '', '', '', '', '', '18705.0000', NULL, 2, NULL, 'received', '', '18705.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (106, '2023-10-24 23:52:07', 106, NULL, NULL, 'IPAY2023/10/0105', NULL, 'cash', '', '', '', '', '', '', '24725.0000', NULL, 2, NULL, 'received', '', '24725.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (107, '2023-10-25 18:11:06', 107, NULL, NULL, 'IPAY2023/10/0106', NULL, 'cash', '', '', '', '', '', '', '11825.0000', NULL, 2, NULL, 'received', '', '11825.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (108, '2023-10-25 19:24:50', 108, NULL, NULL, 'IPAY2023/10/0107', NULL, 'cash', '', '', '', '', '', '', '41495.0000', NULL, 2, NULL, 'received', '', '41495.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (109, '2023-10-25 19:52:37', 109, NULL, NULL, 'IPAY2023/10/0108', NULL, 'cash', '', '', '', '', '', '', '11825.0000', NULL, 2, NULL, 'received', '', '11825.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (110, '2023-10-25 19:54:37', 110, NULL, NULL, 'IPAY2023/10/0109', NULL, 'cash', '', '', '', '', '', '', '17200.0000', NULL, 2, NULL, 'received', '', '17200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (111, '2023-10-25 20:27:32', 111, NULL, NULL, 'IPAY2023/10/0110', NULL, 'cash', '', '', '', '', '', '', '11717.5000', NULL, 2, NULL, 'received', '', '11717.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (112, '2023-10-25 21:02:20', 112, NULL, NULL, 'IPAY2023/10/0111', NULL, 'cash', '', '', '', '', '', '', '3225.0000', NULL, 2, NULL, 'received', '', '3225.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (113, '2023-10-25 23:16:59', 113, NULL, NULL, 'IPAY2023/10/0112', NULL, 'cash', '', '', '', '', '', '', '26767.5000', NULL, 2, NULL, 'received', '', '26767.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (114, '2023-10-25 23:19:08', 114, NULL, NULL, 'IPAY2023/10/0113', NULL, 'cash', '', '', '', '', '', '', '15910.0000', NULL, 2, NULL, 'received', '', '15910.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (115, '2023-10-25 23:21:28', 115, NULL, NULL, 'IPAY2023/10/0114', NULL, 'cash', '', '', '', '', '', '', '9567.5000', NULL, 2, NULL, 'received', '', '9567.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (116, '2023-10-26 13:30:53', 116, NULL, NULL, 'IPAY2023/10/0115', NULL, 'cash', '', '', '', '', '', '', '16985.0000', NULL, 2, NULL, 'received', '', '16985.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (117, '2023-10-26 15:21:40', 117, NULL, NULL, 'IPAY2023/10/0116', NULL, 'cash', '', '', '', '', '', '', '21177.5000', NULL, 2, NULL, 'received', '', '21177.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (118, '2023-10-26 17:06:40', 118, NULL, NULL, 'IPAY2023/10/0117', NULL, 'cash', '', '', '', '', '', '', '60415.0000', NULL, 2, NULL, 'received', '', '60415.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (119, '2023-10-26 17:30:52', 119, NULL, NULL, 'IPAY2023/10/0118', NULL, 'cash', '', '', '', '', '', '', '29455.0000', NULL, 2, NULL, 'received', '', '29455.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (120, '2023-10-26 18:15:47', 120, NULL, NULL, 'IPAY2023/10/0119', NULL, 'cash', '', '', '', '', '', '', '12255.0000', NULL, 2, NULL, 'received', '', '12255.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (121, '2023-10-26 18:27:15', 121, NULL, NULL, 'IPAY2023/10/0120', NULL, 'cash', '', '', '', '', '', '', '71380.0000', NULL, 2, NULL, 'received', '', '71380.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (122, '2023-10-26 19:52:57', 122, NULL, NULL, 'IPAY2023/10/0121', NULL, 'cash', '', '', '', '', '', '', '135450.0000', NULL, 2, NULL, 'received', '', '135450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (123, '2023-10-26 21:07:37', 123, NULL, NULL, 'IPAY2023/10/0122', NULL, 'cash', '', '', '', '', '', '', '537.5000', NULL, 2, NULL, 'received', '', '537.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (124, '2023-10-26 21:32:31', 124, NULL, NULL, 'IPAY2023/10/0123', NULL, 'cash', '', '', '', '', '', '', '41495.0000', NULL, 2, NULL, 'received', '', '41495.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (125, '2023-10-26 21:37:17', 125, NULL, NULL, 'IPAY2023/10/0124', NULL, 'cash', '', '', '', '', '', '', '9675.0000', NULL, 2, NULL, 'received', '', '9675.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (126, '2023-10-27 12:18:08', 126, NULL, NULL, 'IPAY2023/10/0125', NULL, 'cash', '', '', '', '', '', '', '6450.0000', NULL, 2, NULL, 'received', '', '6450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (127, '2023-10-27 17:34:45', 127, NULL, NULL, 'IPAY2023/10/0126', NULL, 'cash', '', '', '', '', '', '', '24510.0000', NULL, 2, NULL, 'received', '', '24510.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (128, '2023-10-27 17:57:12', 128, NULL, NULL, 'IPAY2023/10/0127', NULL, 'cash', '', '', '', '', '', '', '58157.5000', NULL, 2, NULL, 'received', '', '58157.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (129, '2023-10-27 18:37:34', 129, NULL, NULL, 'IPAY2023/10/0128', NULL, 'cash', '', '', '', '', '', '', '18275.0000', NULL, 2, NULL, 'received', '', '18275.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (130, '2023-10-27 19:42:36', 130, NULL, NULL, 'IPAY2023/10/0129', NULL, 'cash', '', '', '', '', '', '', '50310.0000', NULL, 2, NULL, 'received', '', '50310.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (131, '2023-10-27 20:10:08', 131, NULL, NULL, 'IPAY2023/10/0130', NULL, 'cash', '', '', '', '', '', '', '38162.5000', NULL, 2, NULL, 'received', '', '38162.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (132, '2023-10-27 20:56:14', 132, NULL, NULL, 'IPAY2023/10/0131', NULL, 'cash', '', '', '', '', '', '', '3762.5000', NULL, 2, NULL, 'received', '', '3762.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (133, '2023-10-27 21:56:50', 133, NULL, NULL, 'IPAY2023/10/0132', NULL, 'cash', '', '', '', '', '', '', '6987.5000', NULL, 2, NULL, 'received', '', '6987.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (134, '2023-10-27 22:02:31', 134, NULL, NULL, 'IPAY2023/10/0133', NULL, 'cash', '', '', '', '', '', '', '71380.0000', NULL, 2, NULL, 'received', '', '71380.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (135, '2023-10-27 23:08:57', 135, NULL, NULL, 'IPAY2023/10/0134', NULL, 'cash', '', '', '', '', '', '', '47407.5000', NULL, 2, NULL, 'received', '', '47407.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (136, '2023-10-27 23:09:50', 136, NULL, NULL, 'IPAY2023/10/0135', NULL, 'cash', '', '', '', '', '', '', '39022.5000', NULL, 2, NULL, 'received', '', '39022.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (137, '2023-10-27 23:24:15', 137, NULL, NULL, 'IPAY2023/10/0136', NULL, 'cash', '', '', '', '', '', '', '9675.0000', NULL, 2, NULL, 'received', '', '9675.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (138, '2023-10-27 23:26:13', 138, NULL, NULL, 'IPAY2023/10/0137', NULL, 'cash', '', '', '', '', '', '', '23650.0000', NULL, 2, NULL, 'received', '', '23650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (139, '2023-10-28 14:37:01', 139, NULL, NULL, 'IPAY2023/10/0138', NULL, 'cash', '', '', '', '', '', '', '23435.0000', NULL, 1, NULL, 'received', '', '23435.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (140, '2023-10-28 14:45:35', 140, NULL, NULL, 'IPAY2023/10/0139', NULL, 'cash', '', '', '', '', '', '', '266277.5000', NULL, 1, NULL, 'received', '', '266277.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (141, '2023-10-28 14:51:03', 141, NULL, NULL, 'IPAY2023/10/0140', NULL, 'cash', '', '', '', '', '', '', '28702.5000', NULL, 1, NULL, 'received', '', '28702.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (142, '2023-10-28 15:43:25', 142, NULL, NULL, 'IPAY2023/10/0141', NULL, 'cash', '', '', '', '', '', '', '59125.0000', NULL, 1, NULL, 'received', '', '59125.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (143, '2023-10-28 16:30:59', 143, NULL, NULL, 'IPAY2023/10/0142', NULL, 'cash', '', '', '', '', '', '', '45687.5000', NULL, 1, NULL, 'received', '', '45687.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (144, '2023-10-28 16:32:56', 144, NULL, NULL, 'IPAY2023/10/0143', NULL, 'cash', '', '', '', '', '', '', '16125.0000', NULL, 1, NULL, 'received', '', '16125.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (145, '2023-10-28 19:23:09', 145, NULL, NULL, 'IPAY2023/10/0144', NULL, 'cash', '', '', '', '', '', '', '84817.5000', NULL, 1, NULL, 'received', '', '84817.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (146, '2023-10-28 19:27:24', 146, NULL, NULL, 'IPAY2023/10/0145', NULL, 'cash', '', '', '', '', '', '', '2150.0000', NULL, 1, NULL, 'received', '', '2150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (147, '2023-10-28 19:59:02', 147, NULL, NULL, 'IPAY2023/10/0146', NULL, 'cash', '', '', '', '', '', '', '10105.0000', NULL, 1, NULL, 'received', '', '10105.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (148, '2023-10-28 21:21:31', 148, NULL, NULL, 'IPAY2023/10/0147', NULL, 'cash', '', '', '', '', '', '', '52675.0000', NULL, 1, NULL, 'received', '', '52675.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (149, '2023-10-28 21:21:58', 149, NULL, NULL, 'IPAY2023/10/0148', NULL, 'cash', '', '', '', '', '', '', '12900.0000', NULL, 1, NULL, 'received', '', '12900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (150, '2023-10-28 21:26:54', 150, NULL, NULL, 'IPAY2023/10/0149', NULL, 'cash', '', '', '', '', '', '', '6450.0000', NULL, 1, NULL, 'received', '', '6450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (151, '2023-10-28 21:28:08', 151, NULL, NULL, 'IPAY2023/10/0150', NULL, 'cash', '', '', '', '', '', '', '46225.0000', NULL, 1, NULL, 'received', '', '46225.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (152, '2023-10-28 21:53:21', 152, NULL, NULL, 'IPAY2023/10/0151', NULL, 'cash', '', '', '', '', '', '', '15480.0000', NULL, 1, NULL, 'received', '', '15480.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (153, '2023-10-28 23:13:40', 153, NULL, NULL, 'IPAY2023/10/0152', NULL, 'cash', '', '', '', '', '', '', '2687.5000', NULL, 1, NULL, 'received', '', '2687.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (154, '2023-10-28 23:15:12', 154, NULL, NULL, 'IPAY2023/10/0153', NULL, 'cash', '', '', '', '', '', '', '19350.0000', NULL, 1, NULL, 'received', '', '19350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (155, '2023-10-28 23:15:39', 155, NULL, NULL, 'IPAY2023/10/0154', NULL, 'cash', '', '', '', '', '', '', '24725.0000', NULL, 1, NULL, 'received', '', '24725.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (156, '2023-10-29 14:17:14', 156, NULL, NULL, 'IPAY2023/10/0155', NULL, 'cash', '', '', '', '', '', '', '54932.5000', NULL, 2, NULL, 'received', '', '54932.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (157, '2023-10-29 14:31:41', 157, NULL, NULL, 'IPAY2023/10/0156', NULL, 'cash', '', '', '', '', '', '', '64607.5000', NULL, 2, NULL, 'received', '', '64607.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (158, '2023-10-29 15:09:57', 158, NULL, NULL, 'IPAY2023/10/0157', NULL, 'cash', '', '', '', '', '', '', '20210.0000', NULL, 2, NULL, 'received', '', '20210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (159, '2023-10-29 17:29:21', 159, NULL, NULL, 'IPAY2023/10/0158', NULL, 'cash', '', '', '', '', '', '', '4300.0000', NULL, 2, NULL, 'received', '', '4300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (160, '2023-10-29 17:29:53', 160, NULL, NULL, 'IPAY2023/10/0159', NULL, 'cash', '', '', '', '', '', '', '76217.5000', NULL, 2, NULL, 'received', '', '76217.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (161, '2023-10-29 17:30:34', 161, NULL, NULL, 'IPAY2023/10/0160', NULL, 'cash', '', '', '', '', '', '', '11287.5000', NULL, 2, NULL, 'received', '', '11287.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (162, '2023-10-29 17:39:58', 162, NULL, NULL, 'IPAY2023/10/0161', NULL, 'cash', '', '', '', '', '', '', '21285.0000', NULL, 3, NULL, 'received', '', '21285.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (163, '2023-10-29 18:17:18', 163, NULL, NULL, 'IPAY2023/10/0162', NULL, 'cash', '', '', '', '', '', '', '40635.0000', NULL, 3, NULL, 'received', '', '40635.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (164, '2023-10-29 18:41:03', 164, NULL, NULL, 'IPAY2023/10/0163', NULL, 'cash', '', '', '', '', '', '', '19135.0000', NULL, 3, NULL, 'received', '', '19135.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (165, '2023-10-29 19:48:54', 166, NULL, NULL, 'IPAY2023/10/0164', NULL, 'cash', '', '', '', '', '', '', '38700.0000', NULL, 3, NULL, 'received', '', '38700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (166, '2023-10-29 19:59:46', 168, NULL, NULL, 'IPAY2023/10/0165', NULL, 'cash', '', '', '', '', '', '', '24725.0000', NULL, 3, NULL, 'received', '', '24725.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (167, '2023-10-29 20:04:31', 169, NULL, NULL, 'IPAY2023/10/0166', NULL, 'cash', '', '', '', '', '', '', '29347.5000', NULL, 3, NULL, 'received', '', '29347.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (168, '2023-10-29 20:06:34', 170, NULL, NULL, 'IPAY2023/10/0167', NULL, 'cash', '', '', '', '', '', '', '537.5000', NULL, 3, NULL, 'received', '', '537.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (169, '2023-10-29 20:20:16', 172, NULL, NULL, 'IPAY2023/10/0168', NULL, 'cash', '', '', '', '', '', '', '3762.5000', NULL, 3, NULL, 'received', '', '3762.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (170, '2023-10-29 20:24:50', 173, NULL, NULL, 'IPAY2023/10/0169', NULL, 'cash', '', '', '', '', '', '', '28702.5000', NULL, 3, NULL, 'received', '', '28702.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (171, '2023-10-29 20:31:18', 174, NULL, NULL, 'IPAY2023/10/0170', NULL, 'cash', '', '', '', '', '', '', '114057.5000', NULL, 3, NULL, 'received', '', '114057.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (172, '2023-10-29 20:48:48', 175, NULL, NULL, 'IPAY2023/10/0171', NULL, 'cash', '', '', '', '', '', '', '12900.0000', NULL, 3, NULL, 'received', '', '12900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (173, '2023-10-29 21:00:35', 176, NULL, NULL, 'IPAY2023/10/0172', NULL, 'cash', '', '', '', '', '', '', '71595.0000', NULL, 3, NULL, 'received', '', '71595.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (174, '2023-10-29 21:35:59', 177, NULL, NULL, 'IPAY2023/10/0173', NULL, 'cash', '', '', '', '', '', '', '10642.5000', NULL, 3, NULL, 'received', '', '10642.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (175, '2023-10-29 21:41:27', 178, NULL, NULL, 'IPAY2023/10/0174', NULL, 'cash', '', '', '', '', '', '', '22467.5000', NULL, 3, NULL, 'received', '', '22467.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (176, '2023-10-29 21:45:34', 179, NULL, NULL, 'IPAY2023/10/0175', NULL, 'cash', '', '', '', '', '', '', '24617.5000', NULL, 3, NULL, 'received', '', '24617.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (177, '2023-10-29 22:11:45', 180, NULL, NULL, 'IPAY2023/10/0176', NULL, 'cash', '', '', '', '', '', '', '537.5000', NULL, 3, NULL, 'received', '', '537.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (178, '2023-10-29 22:13:11', 181, NULL, NULL, 'IPAY2023/10/0177', NULL, 'cash', '', '', '', '', '', '', '3225.0000', NULL, 3, NULL, 'received', '', '3225.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (179, '2023-10-30 12:44:52', 183, NULL, NULL, 'IPAY2023/10/0178', NULL, 'cash', '', '', '', '', '', '', '597915.0000', NULL, 3, NULL, 'received', '', '597915.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (180, '2023-10-30 13:59:21', 184, NULL, NULL, 'IPAY2023/10/0179', NULL, 'cash', '', '', '', '', '', '', '64285.0000', NULL, 3, NULL, 'received', '', '64285.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (181, '2023-10-30 14:30:44', 185, NULL, NULL, 'IPAY2023/10/0180', NULL, 'cash', '', '', '', '', '', '', '27735.0000', NULL, 3, NULL, 'received', '', '27735.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (182, '2023-10-30 18:40:38', 186, NULL, NULL, 'IPAY2023/10/0181', NULL, 'cash', '', '', '', '', '', '', '29562.5000', NULL, 3, NULL, 'received', '', '29562.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (183, '2023-10-30 19:23:47', 187, NULL, NULL, 'IPAY2023/10/0182', NULL, 'cash', '', '', '', '', '', '', '5375.0000', NULL, 3, NULL, 'received', '', '5375.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (184, '2023-10-30 19:32:00', 188, NULL, NULL, 'IPAY2023/10/0183', NULL, 'cash', '', '', '', '', '', '', '34615.0000', NULL, 3, NULL, 'received', '', '34615.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (185, '2023-10-30 19:44:36', 189, NULL, NULL, 'IPAY2023/10/0184', NULL, 'cash', '', '', '', '', '', '', '2687.5000', NULL, 3, NULL, 'received', '', '2687.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (186, '2023-10-30 19:52:17', 190, NULL, NULL, 'IPAY2023/10/0185', NULL, 'cash', '', '', '', '', '', '', '42140.0000', NULL, 3, NULL, 'received', '', '42140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (187, '2023-10-30 20:21:20', 191, NULL, NULL, 'IPAY2023/10/0186', NULL, 'cash', '', '', '', '', '', '', '537.5000', NULL, 3, NULL, 'received', '', '537.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (188, '2023-10-30 21:07:45', 192, NULL, NULL, 'IPAY2023/10/0187', NULL, 'cash', '', '', '', '', '', '', '10642.5000', NULL, 3, NULL, 'received', '', '10642.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (189, '2023-10-31 11:44:42', 193, NULL, NULL, 'IPAY2023/10/0188', NULL, 'cash', '', '', '', '', '', '', '24510.0000', NULL, 2, NULL, 'received', '', '24510.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (190, '2023-10-31 12:27:16', 194, NULL, NULL, 'IPAY2023/10/0189', NULL, 'cash', '', '', '', '', '', '', '30637.5000', NULL, 2, NULL, 'received', '', '30637.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (191, '2023-10-31 15:17:10', 195, NULL, NULL, 'IPAY2023/10/0190', NULL, 'cash', '', '', '', '', '', '', '39775.0000', NULL, 2, NULL, 'received', '', '39775.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (192, '2023-10-31 19:23:26', 196, NULL, NULL, 'IPAY2023/10/0191', NULL, 'cash', '', '', '', '', '', '', '151252.5000', NULL, 2, NULL, 'received', '', '151252.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (193, '2023-10-31 19:54:00', 198, NULL, NULL, 'IPAY2023/10/0192', NULL, 'cash', '', '', '', '', '', '', '37302.5000', NULL, 2, NULL, 'received', '', '37302.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (194, '2023-10-31 20:39:46', 204, NULL, NULL, 'IPAY2023/10/0193', NULL, 'cash', '', '', '', '', '', '', '47945.0000', NULL, 2, NULL, 'received', '', '47945.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (195, '2023-11-01 12:24:46', 214, NULL, NULL, 'IPAY2023/11/0194', NULL, 'cash', '', '', '', '', '', '', '45257.5000', NULL, 2, NULL, 'received', '', '45257.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (196, '2023-11-01 12:39:15', 215, NULL, NULL, 'IPAY2023/11/0195', NULL, 'cash', '', '', '', '', '', '', '51922.5000', NULL, 2, NULL, 'received', '', '51922.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (197, '2023-11-01 13:34:44', 216, NULL, NULL, 'IPAY2023/11/0196', NULL, 'cash', '', '', '', '', '', '', '11180.0000', NULL, 2, NULL, 'received', '', '11180.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (198, '2023-11-01 14:07:00', 217, NULL, NULL, 'IPAY2023/11/0197', NULL, 'cash', '', '', '', '', '', '', '2150.0000', NULL, 2, NULL, 'received', '', '2150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (199, '2023-11-01 16:50:11', 218, NULL, NULL, 'IPAY2023/11/0198', NULL, 'cash', '', '', '', '', '', '', '16125.0000', NULL, 2, NULL, 'received', '', '16125.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (200, '2023-11-01 17:35:01', 219, NULL, NULL, 'IPAY2023/11/0199', NULL, 'cash', '', '', '', '', '', '', '58157.5000', NULL, 2, NULL, 'received', '', '58157.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (201, '2023-11-01 18:23:40', 220, NULL, NULL, 'IPAY2023/11/0200', NULL, 'cash', '', '', '', '', '', '', '36765.0000', NULL, 2, NULL, 'received', '', '36765.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (202, '2023-11-01 19:27:17', 224, NULL, NULL, 'IPAY2023/11/0201', NULL, 'cash', '', '', '', '', '', '', '44827.5000', NULL, 2, NULL, 'received', '', '44827.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (203, '2023-11-01 19:27:49', 225, NULL, NULL, 'IPAY2023/11/0202', NULL, 'cash', '', '', '', '', '', '', '537.5000', NULL, 2, NULL, 'received', '', '537.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (204, '2023-11-01 19:28:10', 226, NULL, NULL, 'IPAY2023/11/0203', NULL, 'cash', '', '', '', '', '', '', '3762.5000', NULL, 2, NULL, 'received', '', '3762.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (205, '2023-11-01 19:34:26', 227, NULL, NULL, 'IPAY2023/11/0204', NULL, 'cash', '', '', '', '', '', '', '1612.5000', NULL, 2, NULL, 'received', '', '1612.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (207, '2023-11-01 19:41:16', 229, NULL, NULL, 'IPAY2023/11/0206', NULL, 'cash', '', '', '', '', '', '', '23650.0000', NULL, 2, NULL, 'received', '', '23650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (208, '2023-11-01 20:37:00', 233, NULL, NULL, 'IPAY2023/11/0207', NULL, 'cash', '', '', '', '', '', 'Visa', '2687.5000', NULL, 2, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (209, '2023-11-01 21:04:54', 237, NULL, NULL, 'IPAY2023/11/0208', NULL, 'cash', '', '', '', '', '', '', '4837.5000', NULL, 2, NULL, 'received', '', '4837.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (210, '2023-11-01 21:17:32', 238, NULL, NULL, 'IPAY2023/11/0209', NULL, 'cash', '', '', '', '', '', '', '69875.0000', NULL, 2, NULL, 'received', '', '69875.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (212, '2023-11-01 22:14:26', 239, NULL, NULL, 'IPAY2023/11/0211', NULL, 'cash', '', '', '', '', '', '', '9567.5000', NULL, 2, NULL, 'received', '', '9567.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (213, '2023-11-02 11:19:12', 240, NULL, NULL, 'IPAY2023/11/0212', NULL, 'cash', '', '', '', '', '', '', '52137.5000', NULL, 3, NULL, 'received', '', '52137.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (214, '2023-11-02 12:59:26', 241, NULL, NULL, 'IPAY2023/11/0213', NULL, 'cash', '', '', '', '', '', '', '29777.5000', NULL, 3, NULL, 'received', '', '29777.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (215, '2023-11-02 14:35:06', 242, NULL, NULL, 'IPAY2023/11/0214', NULL, 'cash', '', '', '', '', '', '', '45902.5000', NULL, 3, NULL, 'received', '', '45902.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (216, '2023-11-02 15:27:13', 243, NULL, NULL, 'IPAY2023/11/0215', NULL, 'cash', '', '', '', '', '', '', '20747.5000', NULL, 3, NULL, 'received', '', '20747.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (217, '2023-11-02 16:51:24', 244, NULL, NULL, 'IPAY2023/11/0216', NULL, 'cash', '', '', '', '', '', '', '39990.0000', NULL, 3, NULL, 'received', '', '39990.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (218, '2023-11-02 17:47:02', 245, NULL, NULL, 'IPAY2023/11/0217', NULL, 'cash', '', '', '', '', '', '', '20210.0000', NULL, 3, NULL, 'received', '', '20210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (219, '2023-11-02 17:48:46', 246, NULL, NULL, 'IPAY2023/11/0218', NULL, 'cash', '', '', '', '', '', '', '30100.0000', NULL, 3, NULL, 'received', '', '30100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (220, '2023-11-02 18:36:58', 247, NULL, NULL, 'IPAY2023/11/0219', NULL, 'cash', '', '', '', '', '', '', '39990.0000', NULL, 3, NULL, 'received', '', '39990.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (221, '2023-11-02 19:25:14', 248, NULL, NULL, 'IPAY2023/11/0220', NULL, 'cash', '', '', '', '', '', '', '3762.5000', NULL, 3, NULL, 'received', '', '3762.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (222, '2023-11-02 20:07:22', 249, NULL, NULL, 'IPAY2023/11/0221', NULL, 'cash', '', '', '', '', '', '', '4837.5000', NULL, 3, NULL, 'received', '', '4837.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (223, '2023-11-02 20:18:41', 250, NULL, NULL, 'IPAY2023/11/0222', NULL, 'cash', '', '', '', '', '', '', '42677.5000', NULL, 3, NULL, 'received', '', '42677.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (224, '2023-11-02 20:42:26', 251, NULL, NULL, 'IPAY2023/11/0223', NULL, 'cash', '', '', '', '', '', '', '55577.5000', NULL, 3, NULL, 'received', '', '55577.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (225, '2023-11-02 20:46:50', 252, NULL, NULL, 'IPAY2023/11/0224', NULL, 'cash', '', '', '', '', '', '', '37517.5000', NULL, 3, NULL, 'received', '', '37517.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (226, '2023-11-02 21:28:28', 253, NULL, NULL, 'IPAY2023/11/0225', NULL, 'cash', '', '', '', '', '', '', '68800.0000', NULL, 3, NULL, 'received', '', '68800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (228, '2023-11-02 21:42:20', 255, NULL, NULL, 'IPAY2023/11/0227', NULL, 'cash', '', '', '', '', '', '', '2687.5000', NULL, 3, NULL, 'received', '', '2687.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (229, '2023-11-02 22:04:06', 256, NULL, NULL, 'IPAY2023/11/0228', NULL, 'cash', '', '', '', '', '', '', '4837.5000', NULL, 3, NULL, 'received', '', '4837.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (230, '2023-11-02 22:35:00', 257, NULL, NULL, 'IPAY2023/11/0229', NULL, 'cash', '', '', '', '', '', '', '31927.5000', NULL, 3, NULL, 'received', '', '31927.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (231, '2023-11-03 13:22:00', 259, NULL, NULL, 'IPAY2023/11/0230', NULL, 'cash', '', '', '', '', '', 'Visa', '33970.0000', NULL, 2, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (232, '2023-11-03 13:22:00', 258, NULL, NULL, 'IPAY2023/11/0231', NULL, 'cash', '', '', '', '', '', 'Visa', '34077.5000', NULL, 2, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (233, '2023-11-03 13:55:00', 260, NULL, NULL, 'IPAY2023/11/0232', NULL, 'cash', '', '', '', '', '', 'Visa', '28810.0000', NULL, 2, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (234, '2023-11-03 14:53:00', 261, NULL, NULL, 'IPAY2023/11/0233', NULL, 'cash', '', '', '', '', '', 'Visa', '47085.0000', NULL, 2, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (235, '2023-11-03 14:54:00', 262, NULL, NULL, 'IPAY2023/11/0234', NULL, 'cash', '', '', '', '', '', 'Visa', '4300.0000', NULL, 2, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (236, '2023-11-03 15:48:00', 263, NULL, NULL, 'IPAY2023/11/0235', NULL, 'cash', '', '', '', '', '', 'Visa', '2150.0000', NULL, 2, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (237, '2023-11-03 16:56:38', 266, NULL, NULL, 'IPAY2023/11/0236', NULL, 'cash', '', '', '', '', '', '', '19672.5000', NULL, 2, NULL, 'received', '', '19672.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (238, '2023-11-03 18:36:53', 267, NULL, NULL, 'IPAY2023/11/0237', NULL, 'cash', '', '', '', '', '', '', '9675.0000', NULL, 2, NULL, 'received', '', '9675.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (239, '2023-11-03 19:03:30', 268, NULL, NULL, 'IPAY2023/11/0238', NULL, 'cash', '', '', '', '', '', '', '82022.5000', NULL, 2, NULL, 'received', '', '82022.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (240, '2023-11-03 19:05:01', 269, NULL, NULL, 'IPAY2023/11/0239', NULL, 'cash', '', '', '', '', '', '', '9675.0000', NULL, 2, NULL, 'received', '', '9675.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (241, '2023-11-03 19:35:08', 270, NULL, NULL, 'IPAY2023/11/0240', NULL, 'cash', '', '', '', '', '', '', '60952.5000', NULL, 2, NULL, 'received', '', '60952.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (242, '2023-11-03 19:44:53', 271, NULL, NULL, 'IPAY2023/11/0241', NULL, 'cash', '', '', '', '', '', '', '46440.0000', NULL, 2, NULL, 'received', '', '46440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (243, '2023-11-03 19:49:18', 272, NULL, NULL, 'IPAY2023/11/0242', NULL, 'cash', '', '', '', '', '', '', '37302.5000', NULL, 2, NULL, 'received', '', '37302.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (244, '2023-11-03 20:55:36', 273, NULL, NULL, 'IPAY2023/11/0243', NULL, 'cash', '', '', '', '', '', '', '29347.5000', NULL, 2, NULL, 'received', '', '29347.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (245, '2023-11-03 21:34:53', 274, NULL, NULL, 'IPAY2023/11/0244', NULL, 'cash', '', '', '', '', '', '', '4837.5000', NULL, 2, NULL, 'received', '', '4837.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (246, '2023-11-03 23:08:16', 275, NULL, NULL, 'IPAY2023/11/0245', NULL, 'cash', '', '', '', '', '', '', '54932.5000', NULL, 2, NULL, 'received', '', '54932.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (247, '2023-11-03 23:50:38', 276, NULL, NULL, 'IPAY2023/11/0246', NULL, 'cash', '', '', '', '', '', '', '51385.0000', NULL, 2, NULL, 'received', '', '51385.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (248, '2023-11-04 12:02:31', 277, NULL, NULL, 'IPAY2023/11/0247', NULL, 'cash', '', '', '', '', '', '', '77099.0000', NULL, 2, NULL, 'received', '', '77099.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (249, '2023-11-04 12:27:27', 278, NULL, NULL, 'IPAY2023/11/0248', NULL, 'cash', '', '', '', '', '', '', '16555.0000', NULL, 2, NULL, 'received', '', '16555.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (250, '2023-11-04 13:05:02', 279, NULL, NULL, 'IPAY2023/11/0249', NULL, 'cash', '', '', '', '', '', '', '21758.0000', NULL, 2, NULL, 'received', '', '21758.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (251, '2023-11-04 13:36:36', 280, NULL, NULL, 'IPAY2023/11/0250', NULL, 'cash', '', '', '', '', '', '', '73551.5000', NULL, 2, NULL, 'received', '', '73551.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (252, '2023-11-04 14:32:33', 281, NULL, NULL, 'IPAY2023/11/0251', NULL, 'cash', '', '', '', '', '', '', '38549.5000', NULL, 2, NULL, 'received', '', '38549.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (253, '2023-11-04 15:14:46', 282, NULL, NULL, 'IPAY2023/11/0252', NULL, 'cash', '', '', '', '', '', '', '52148.2500', NULL, 2, NULL, 'received', '', '52148.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (254, '2023-11-04 16:17:26', 283, NULL, NULL, 'IPAY2023/11/0253', NULL, 'cash', '', '', '', '', '', '', '4138.7500', NULL, 2, NULL, 'received', '', '4138.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (255, '2023-11-04 16:58:59', 284, NULL, NULL, 'IPAY2023/11/0254', NULL, 'cash', '', '', '', '', '', '', '38194.7500', NULL, 2, NULL, 'received', '', '38194.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (256, '2023-11-04 17:13:08', 285, NULL, NULL, 'IPAY2023/11/0255', NULL, 'cash', '', '', '', '', '', '', '69058.0000', NULL, 2, NULL, 'received', '', '69058.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (257, '2023-11-04 17:17:04', 286, NULL, NULL, 'IPAY2023/11/0256', NULL, 'cash', '', '', '', '', '', '', '20102.5000', NULL, 2, NULL, 'received', '', '20102.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (258, '2023-11-04 17:20:56', 287, NULL, NULL, 'IPAY2023/11/0257', NULL, 'cash', '', '', '', '', '', '', '591.2500', NULL, 1, NULL, 'received', '', '591.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (259, '2023-11-04 17:22:34', 288, NULL, NULL, 'IPAY2023/11/0258', NULL, 'cash', '', '', '', '', '', '', '36184.5000', NULL, 2, NULL, 'received', '', '36184.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (260, '2023-11-04 17:56:39', 291, NULL, NULL, 'IPAY2023/11/0259', NULL, 'cash', '', '', '', '', '', '', '1832.8800', NULL, 2, NULL, 'received', '', '1832.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (261, '2023-11-04 18:48:56', 294, NULL, NULL, 'IPAY2023/11/0260', NULL, 'cash', '', '', '', '', '', '', '18210.5000', NULL, 2, NULL, 'received', '', '18210.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (262, '2023-11-04 18:51:09', 295, NULL, NULL, 'IPAY2023/11/0261', NULL, 'cash', '', '', '', '', '', '', '54395.0000', NULL, 2, NULL, 'received', '', '54395.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (263, '2023-11-04 18:52:08', 296, NULL, NULL, 'IPAY2023/11/0262', NULL, 'cash', '', '', '', '', '', '', '24596.0000', NULL, 2, NULL, 'received', '', '24596.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (264, '2023-11-04 19:28:56', 297, NULL, NULL, 'IPAY2023/11/0263', NULL, 'cash', '', '', '', '', '', '', '28380.0000', NULL, 2, NULL, 'received', '', '28380.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (265, '2023-11-04 19:46:28', 298, NULL, NULL, 'IPAY2023/11/0264', NULL, 'cash', '', '', '', '', '', '', '28734.7500', NULL, 2, NULL, 'received', '', '28734.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (266, '2023-11-04 21:27:02', 299, NULL, NULL, 'IPAY2023/11/0265', NULL, 'cash', '', '', '', '', '', '', '15254.2500', NULL, 2, NULL, 'received', '', '15254.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (267, '2023-11-04 21:31:30', 300, NULL, NULL, 'IPAY2023/11/0266', NULL, 'cash', '', '', '', '', '', '', '24714.2500', NULL, 2, NULL, 'received', '', '24714.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (269, '2023-11-04 22:07:11', 302, NULL, NULL, 'IPAY2023/11/0268', NULL, 'cash', '', '', '', '', '', '', '40205.0000', NULL, 2, NULL, 'received', '', '40205.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (270, '2023-11-04 23:02:02', 303, NULL, NULL, 'IPAY2023/11/0269', NULL, 'cash', '', '', '', '', '', '', '11825.0000', NULL, 2, NULL, 'received', '', '11825.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (271, '2023-11-05 14:39:00', 311, NULL, NULL, 'IPAY2023/11/0270', NULL, 'cash', '', '', '', '', '', 'Visa', '62350.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 (272, '2023-11-05 14:40:00', 309, NULL, NULL, 'IPAY2023/11/0271', NULL, 'cash', '', '', '', '', '', 'Visa', '26660.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 (273, '2023-11-05 15:07:00', 313, NULL, NULL, 'IPAY2023/11/0272', NULL, 'cash', '', '', '', '', '', 'Visa', '50740.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 (274, '2023-11-05 15:30:57', 318, NULL, NULL, 'IPAY2023/11/0273', NULL, 'cash', '', '', '', '', '', '', '10642.5000', NULL, 3, NULL, 'received', '', '10642.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (275, '2023-11-05 16:12:29', 322, NULL, NULL, 'IPAY2023/11/0274', NULL, 'cash', '', '', '', '', '', '', '3547.5000', NULL, 3, NULL, 'received', '', '3547.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (276, '2023-11-05 16:17:00', 315, NULL, NULL, 'IPAY2023/11/0275', NULL, 'cash', '', '', '', '', '', 'Visa', '27197.5000', 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 (277, '2023-11-05 16:18:00', 319, NULL, NULL, 'IPAY2023/11/0276', NULL, 'cash', '', '', '', '', '', 'Visa', '11287.5000', 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 (278, '2023-11-05 17:25:00', 314, NULL, NULL, 'IPAY2023/11/0277', NULL, 'cash', '', '', '', '', '', 'Visa', '27735.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 (279, '2023-11-05 17:42:00', 316, NULL, NULL, 'IPAY2023/11/0278', NULL, 'cash', '', '', '', '', '', 'Visa', '43537.5000', 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 (280, '2023-11-05 17:42:00', 317, NULL, NULL, 'IPAY2023/11/0279', NULL, 'cash', '', '', '', '', '', 'Visa', '25047.5000', 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 (281, '2023-11-05 17:44:00', 320, NULL, NULL, 'IPAY2023/11/0280', NULL, 'cash', '', '', '', '', '', 'Visa', '64607.5000', 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 (282, '2023-11-05 19:02:00', 316, NULL, NULL, 'IPAY2023/11/0281', NULL, 'cash', '', '', '', '', '', 'Visa', '18060.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 (283, '2023-11-05 19:22:37', 325, NULL, NULL, 'IPAY2023/11/0282', NULL, 'cash', '', '', '', '', '', '', '14663.0000', NULL, 3, NULL, 'received', '', '14663.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (284, '2023-11-05 20:29:09', 329, NULL, NULL, 'IPAY2023/11/0283', NULL, 'cash', '', '', '', '', '', '', '15254.2500', NULL, 3, NULL, 'received', '', '15254.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (285, '2023-11-05 20:30:58', 330, NULL, NULL, 'IPAY2023/11/0284', NULL, 'cash', '', '', '', '', '', '', '59834.5000', NULL, 3, NULL, 'received', '', '59834.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (286, '2023-11-05 20:35:00', 328, NULL, NULL, 'IPAY2023/11/0285', NULL, 'cash', '', '', '', '', '', 'Visa', '4837.5000', 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 (287, '2023-11-05 20:52:00', 327, NULL, NULL, 'IPAY2023/11/0286', NULL, 'cash', '', '', '', '', '', 'Visa', '41602.5000', 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 (288, '2023-11-05 20:57:00', 326, NULL, NULL, 'IPAY2023/11/0287', NULL, 'cash', '', '', '', '', '', 'Visa', '44720.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 (289, '2023-11-05 21:01:00', 324, NULL, NULL, 'IPAY2023/11/0288', NULL, 'cash', '', '', '', '', '', 'Visa', '62135.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 (292, '2023-11-06 15:02:00', 331, NULL, NULL, 'IPAY2023/11/0291', NULL, 'cash', '', '', '', '', '', 'Visa', '38915.0000', NULL, 2, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (293, '2023-11-06 15:02:00', 332, NULL, NULL, 'IPAY2023/11/0292', NULL, 'cash', '', '', '', '', '', 'Visa', '3225.0000', NULL, 2, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (295, '2023-11-06 16:28:39', 338, NULL, NULL, 'IPAY2023/11/0294', NULL, 'cash', '', '', '', '', '', '', '4730.0000', NULL, 2, NULL, 'received', '', '4730.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (296, '2023-11-06 16:32:00', 335, NULL, NULL, 'IPAY2023/11/0295', NULL, 'cash', '', '', '', '', '', 'Visa', '6772.5000', NULL, 2, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (297, '2023-11-06 17:43:00', 339, NULL, NULL, 'IPAY2023/11/0296', NULL, 'cash', '', '', '', '', '', '', '124990.2500', NULL, 2, NULL, 'received', '', '124990.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (298, '2023-11-06 20:00:23', 341, NULL, NULL, 'IPAY2023/11/0297', NULL, 'cash', '', '', '', '', '', '', '29799.0000', NULL, 2, NULL, 'received', '', '29799.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (299, '2023-11-07 14:02:11', 344, NULL, NULL, 'IPAY2023/11/0298', NULL, 'cash', '', '', '', '', '', '', '50019.7500', NULL, 2, NULL, 'received', '', '50019.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (300, '2023-11-07 14:16:12', 345, NULL, NULL, 'IPAY2023/11/0299', NULL, 'cash', '', '', '', '', '', '', '98857.0000', NULL, 2, NULL, 'received', '', '98857.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (301, '2023-11-07 15:04:15', 346, NULL, NULL, 'IPAY2023/11/0300', NULL, 'cash', '', '', '', '', '', '', '52621.2500', NULL, 2, NULL, 'received', '', '52621.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (302, '2023-11-07 15:39:25', 348, NULL, NULL, 'IPAY2023/11/0301', NULL, 'cash', '', '', '', '', '', '', '9933.0000', NULL, 2, NULL, 'received', '', '9933.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (303, '2023-11-07 17:09:02', 351, NULL, NULL, 'IPAY2023/11/0302', NULL, 'cash', '', '', '', '', '', '', '32873.5000', NULL, 2, NULL, 'received', '', '32873.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (304, '2023-11-07 17:11:01', 352, NULL, NULL, 'IPAY2023/11/0303', NULL, 'cash', '', '', '', '', '', '', '19393.0000', NULL, 2, NULL, 'received', '', '19393.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (307, '2023-11-07 17:46:53', 353, NULL, NULL, 'IPAY2023/11/0306', NULL, 'cash', '', '', '', '', '', '', '42806.5000', NULL, 2, NULL, 'received', '', '42806.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (308, '2023-11-07 18:10:24', 355, NULL, NULL, 'IPAY2023/11/0307', NULL, 'cash', '', '', '', '', '', '', '8277.5000', NULL, 2, NULL, 'received', '', '8277.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (309, '2023-11-07 19:21:11', 358, NULL, NULL, 'IPAY2023/11/0308', NULL, 'cash', '', '', '', '', '', '', '30508.5000', NULL, 2, NULL, 'received', '', '30508.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (310, '2023-11-07 19:25:52', 360, NULL, NULL, 'IPAY2023/11/0309', NULL, 'cash', '', '', '', '', '', '', '32282.2500', NULL, 2, NULL, 'received', '', '32282.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (311, '2023-11-07 20:25:05', 362, NULL, NULL, 'IPAY2023/11/0310', NULL, 'cash', '', '', '', '', '', '', '14071.7500', NULL, 2, NULL, 'received', '', '14071.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (312, '2023-11-07 21:13:21', 363, NULL, NULL, 'IPAY2023/11/0311', NULL, 'cash', '', '', '', '', '', '', '79700.5000', NULL, 2, NULL, 'received', '', '79700.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (313, '2023-11-07 21:21:42', 364, NULL, NULL, 'IPAY2023/11/0312', NULL, 'cash', '', '', '', '', '', '', '102995.7500', NULL, 2, NULL, 'received', '', '102995.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (314, '2023-11-08 13:27:10', 365, NULL, NULL, 'IPAY2023/11/0313', NULL, 'cash', '', '', '', '', '', '', '67639.0000', NULL, 2, NULL, 'received', '', '67639.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (315, '2023-11-08 13:46:39', 366, NULL, NULL, 'IPAY2023/11/0314', NULL, 'cash', '', '', '', '', '', '', '7095.0000', NULL, 2, NULL, 'received', '', '7095.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (316, '2023-11-08 13:48:46', 367, NULL, NULL, 'IPAY2023/11/0315', NULL, 'cash', '', '', '', '', '', '', '55695.7500', NULL, 2, NULL, 'received', '', '55695.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (317, '2023-11-08 16:38:26', 368, NULL, NULL, 'IPAY2023/11/0316', NULL, 'cash', '', '', '', '', '', '', '29917.2500', NULL, 2, NULL, 'received', '', '29917.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (318, '2023-11-08 18:53:59', 369, NULL, NULL, 'IPAY2023/11/0317', NULL, 'cash', '', '', '', '', '', '', '12298.0000', NULL, 2, NULL, 'received', '', '12298.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (319, '2023-11-08 20:03:21', 371, NULL, NULL, 'IPAY2023/11/0318', NULL, 'cash', '', '', '', '', '', '', '22231.0000', NULL, 2, NULL, 'received', '', '22231.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (320, '2023-11-09 14:54:56', 374, NULL, NULL, 'IPAY2023/11/0319', NULL, 'cash', '', '', '', '', '', '', '290895.0000', NULL, 3, NULL, 'received', '', '290895.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (322, '2023-11-09 15:21:32', 376, NULL, NULL, 'IPAY2023/11/0321', NULL, 'cash', '', '', '', '', '', '', '69885.7500', NULL, 3, NULL, 'received', '', '69885.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (323, '2023-11-09 16:57:17', 380, NULL, NULL, 'IPAY2023/11/0322', NULL, 'cash', '', '', '', '', '', '', '13480.5000', NULL, 3, NULL, 'received', '', '13480.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (324, '2023-11-09 16:59:49', 381, NULL, NULL, 'IPAY2023/11/0323', NULL, 'cash', '', '', '', '', '', '', '58179.0000', NULL, 3, NULL, 'received', '', '58179.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (325, '2023-11-09 17:01:57', 382, NULL, NULL, 'IPAY2023/11/0324', NULL, 'cash', '', '', '', '', '', '', '5321.2500', NULL, 3, NULL, 'received', '', '5321.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (326, '2023-11-09 17:17:23', 383, NULL, NULL, 'IPAY2023/11/0325', NULL, 'cash', '', '', '', '', '', '', '43989.0000', NULL, 3, NULL, 'received', '', '43989.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (327, '2023-11-09 17:33:47', 384, NULL, NULL, 'IPAY2023/11/0326', NULL, 'cash', '', '', '', '', '', '', '34647.2500', NULL, 3, NULL, 'received', '', '34647.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (329, '2023-11-09 18:35:24', 387, NULL, NULL, 'IPAY2023/11/0328', NULL, 'cash', '', '', '', '', '', '', '10642.5000', NULL, 3, NULL, 'received', '', '10642.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (330, '2023-11-09 19:54:10', 388, NULL, NULL, 'IPAY2023/11/0329', NULL, 'cash', '', '', '', '', '', '', '100512.5000', NULL, 3, NULL, 'received', '', '100512.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (331, '2023-11-09 22:03:41', 390, NULL, NULL, 'IPAY2023/11/0330', NULL, 'cash', '', '', '', '', '', '', '94954.7500', NULL, 3, NULL, 'received', '', '94954.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (332, '2023-11-09 23:11:21', 392, NULL, NULL, 'IPAY2023/11/0331', NULL, 'cash', '', '', '', '', '', '', '34529.0000', NULL, 3, NULL, 'received', '', '34529.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (333, '2023-11-10 14:51:23', 394, NULL, NULL, 'IPAY2023/11/0332', NULL, 'cash', '', '', '', '', '', '', '14663.0000', NULL, 2, NULL, 'received', '', '14663.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (334, '2023-11-10 16:42:26', 398, NULL, NULL, 'IPAY2023/11/0333', NULL, 'cash', '', '', '', '', '', '', '23531.7500', NULL, 2, NULL, 'received', '', '23531.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (335, '2023-11-10 16:46:43', 399, NULL, NULL, 'IPAY2023/11/0334', NULL, 'cash', '', '', '', '', '', '', '11706.7500', NULL, 2, NULL, 'received', '', '11706.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (337, '2023-11-10 17:15:03', 403, NULL, NULL, 'IPAY2023/11/0336', NULL, 'cash', '', '', '', '', '', '', '93181.0000', NULL, 2, NULL, 'received', '', '93181.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (338, '2023-11-10 17:15:54', 404, NULL, NULL, 'IPAY2023/11/0337', NULL, 'cash', '', '', '', '', '', '', '2128.5000', NULL, 2, NULL, 'received', '', '2128.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (339, '2023-11-10 17:29:39', 405, NULL, NULL, 'IPAY2023/11/0338', NULL, 'cash', '', '', '', '', '', '', '48127.7500', NULL, 2, NULL, 'received', '', '48127.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (340, '2023-11-10 17:34:22', 406, NULL, NULL, 'IPAY2023/11/0339', NULL, 'cash', '', '', '', '', '', '', '42924.7500', NULL, 2, NULL, 'received', '', '42924.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (341, '2023-11-10 18:07:30', 409, NULL, NULL, 'IPAY2023/11/0340', NULL, 'cash', '', '', '', '', '', '', '19274.7500', NULL, 2, NULL, 'received', '', '19274.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (342, '2023-11-10 18:39:41', 410, NULL, NULL, 'IPAY2023/11/0341', NULL, 'cash', '', '', '', '', '', '', '12889.2500', NULL, 2, NULL, 'received', '', '12889.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (343, '2023-11-10 19:40:56', 413, NULL, NULL, 'IPAY2023/11/0342', NULL, 'cash', '', '', '', '', '', '', '37485.2500', NULL, 2, NULL, 'received', '', '37485.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (344, '2023-11-10 20:10:05', 414, NULL, NULL, 'IPAY2023/11/0343', NULL, 'cash', '', '', '', '', '', '', '78045.0000', NULL, 2, NULL, 'received', '', '78045.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (345, '2023-11-10 20:32:21', 415, NULL, NULL, 'IPAY2023/11/0344', NULL, 'cash', '', '', '', '', '', '', '84312.2500', NULL, 2, NULL, 'received', '', '84312.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (346, '2023-11-10 20:41:10', 416, NULL, NULL, 'IPAY2023/11/0345', NULL, 'cash', '', '', '', '', '', '', '22940.5000', NULL, 2, NULL, 'received', '', '22940.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (347, '2023-11-10 21:21:19', 419, NULL, NULL, 'IPAY2023/11/0346', NULL, 'cash', '', '', '', '', '', '', '1182.5000', NULL, 2, NULL, 'received', '', '1182.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (348, '2023-11-10 21:38:23', 420, NULL, NULL, 'IPAY2023/11/0347', NULL, 'cash', '', '', '', '', '', '', '15017.7500', NULL, 2, NULL, 'received', '', '15017.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (349, '2023-11-10 22:55:04', 422, NULL, NULL, 'IPAY2023/11/0348', NULL, 'cash', '', '', '', '', '', '', '19393.0000', NULL, 2, NULL, 'received', '', '19393.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (350, '2023-11-11 14:57:59', 424, NULL, NULL, 'IPAY2023/11/0349', NULL, 'cash', '', '', '', '', '', '', '85494.7500', NULL, 2, NULL, 'received', '', '85494.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (351, '2023-11-11 16:53:23', 429, NULL, NULL, 'IPAY2023/11/0350', NULL, 'cash', '', '', '', '', '', '', '15254.2500', NULL, 2, NULL, 'received', '', '15254.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (352, '2023-11-11 17:00:11', 430, NULL, NULL, 'IPAY2023/11/0351', NULL, 'cash', '', '', '', '', '', '', '3547.5000', NULL, 2, NULL, 'received', '', '3547.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (353, '2023-11-11 17:02:03', 431, NULL, NULL, 'IPAY2023/11/0352', NULL, 'cash', '', '', '', '', '', '', '3547.5000', NULL, 2, NULL, 'received', '', '3547.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (354, '2023-11-11 17:13:56', 432, NULL, NULL, 'IPAY2023/11/0353', NULL, 'cash', '', '', '', '', '', '', '21639.7500', NULL, 2, NULL, 'received', '', '21639.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (355, '2023-11-11 18:14:14', 436, NULL, NULL, 'IPAY2023/11/0354', NULL, 'cash', '', '', '', '', '', '', '227040.0000', NULL, 2, NULL, 'received', '', '227040.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (356, '2023-11-11 18:18:28', 437, NULL, NULL, 'IPAY2023/11/0355', NULL, 'cash', '', '', '', '', '', '', '28143.5000', NULL, 2, NULL, 'received', '', '28143.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (357, '2023-11-11 18:25:35', 438, NULL, NULL, 'IPAY2023/11/0356', NULL, 'cash', '', '', '', '', '', '', '63618.5000', NULL, 2, NULL, 'received', '', '63618.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (358, '2023-11-11 18:58:06', 439, NULL, NULL, 'IPAY2023/11/0357', NULL, 'cash', '', '', '', '', '', '', '31336.2500', NULL, 2, NULL, 'received', '', '31336.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (359, '2023-11-11 19:06:48', 441, NULL, NULL, 'IPAY2023/11/0358', NULL, 'cash', '', '', '', '', '', '', '591.2500', NULL, 2, NULL, 'received', '', '591.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (360, '2023-11-11 19:08:11', 442, NULL, NULL, 'IPAY2023/11/0359', NULL, 'cash', '', '', '', '', '', '', '4138.7500', NULL, 2, NULL, 'received', '', '4138.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (361, '2023-11-11 19:40:13', 447, NULL, NULL, 'IPAY2023/11/0360', NULL, 'cash', '', '', '', '', '', '', '5912.5000', NULL, 2, NULL, 'received', '', '5912.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (362, '2023-11-11 20:07:59', 448, NULL, NULL, 'IPAY2023/11/0361', NULL, 'cash', '', '', '', '', '', '', '10642.5000', NULL, 2, NULL, 'received', '', '10642.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (363, '2023-11-11 20:48:27', 452, NULL, NULL, 'IPAY2023/11/0362', NULL, 'cash', '', '', '', '', '', '', '3547.5000', NULL, 2, NULL, 'received', '', '3547.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (364, '2023-11-11 20:56:23', 454, NULL, NULL, 'IPAY2023/11/0363', NULL, 'cash', '', '', '', '', '', '', '2365.0000', NULL, 2, NULL, 'received', '', '2365.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (365, '2023-11-11 20:57:10', 455, NULL, NULL, 'IPAY2023/11/0364', NULL, 'cash', '', '', '', '', '', '', '2365.0000', NULL, 2, NULL, 'received', '', '2365.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (366, '2023-11-11 21:01:31', 456, NULL, NULL, 'IPAY2023/11/0365', NULL, 'cash', '', '', '', '', '', '', '19866.0000', NULL, 2, NULL, 'received', '', '19866.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (367, '2023-11-11 21:19:49', 457, NULL, NULL, 'IPAY2023/11/0366', NULL, 'cash', '', '', '', '', '', '', '25423.7500', NULL, 2, NULL, 'received', '', '25423.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (368, '2023-11-11 21:26:42', 458, NULL, NULL, 'IPAY2023/11/0367', NULL, 'cash', '', '', '', '', '', '', '22467.5000', NULL, 2, NULL, 'received', '', '22467.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (370, '2023-11-12 11:45:54', 461, NULL, NULL, 'IPAY2023/11/0369', NULL, 'cash', '', '', '', '', '', '', '43279.5000', NULL, 2, NULL, 'received', '', '43279.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (371, '2023-11-12 12:56:32', 463, NULL, NULL, 'IPAY2023/11/0370', NULL, 'cash', '', '', '', '', '', '', '19866.0000', NULL, 2, NULL, 'received', '', '19866.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (372, '2023-11-12 13:17:30', 464, NULL, NULL, 'IPAY2023/11/0371', NULL, 'cash', '', '', '', '', '', '', '34056.0000', NULL, 2, NULL, 'received', '', '34056.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (373, '2023-11-12 13:38:56', 465, NULL, NULL, 'IPAY2023/11/0372', NULL, 'cash', '', '', '', '', '', '', '14663.0000', NULL, 2, NULL, 'received', '', '14663.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (374, '2023-11-12 13:45:37', 466, NULL, NULL, 'IPAY2023/11/0373', NULL, 'cash', '', '', '', '', '', '', '14190.0000', NULL, 2, NULL, 'received', '', '14190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (375, '2023-11-12 14:35:00', NULL, NULL, 2, 'POP2023/11/0001', NULL, 'cash', '', '', '', '', '', 'Visa', '2872937.5000', NULL, 1, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (376, '2023-11-12 14:38:00', NULL, NULL, 3, 'POP2023/11/0002', NULL, 'cash', '', '', '', '', '', 'Visa', '242412.5000', NULL, 1, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (377, '2023-11-12 17:08:09', 473, NULL, NULL, 'IPAY2023/11/0374', NULL, 'cash', '', '', '', '', '', '', '3547.5000', NULL, 2, NULL, 'received', '', '3547.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (378, '2023-11-12 17:45:35', 475, NULL, NULL, 'IPAY2023/11/0375', NULL, 'cash', '', '', '', '', '', '', '13480.5000', NULL, 2, NULL, 'received', '', '13480.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (379, '2023-11-12 17:55:27', 476, NULL, NULL, 'IPAY2023/11/0376', NULL, 'cash', '', '', '', '', '', '', '67284.2500', NULL, 2, NULL, 'received', '', '67284.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (380, '2023-11-12 18:06:21', 478, NULL, NULL, 'IPAY2023/11/0377', NULL, 'cash', '', '', '', '', '', '', '2365.0000', NULL, 2, NULL, 'received', '', '2365.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (381, '2023-11-12 18:11:00', NULL, NULL, 4, 'POP2023/11/0003', NULL, 'cash', '', '', '', '', '', 'Visa', '48375.0000', NULL, 2, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (382, '2023-11-12 18:28:00', NULL, NULL, 5, 'POP2023/11/0004', NULL, 'cash', '', '', '', '', '', 'Visa', '70950.0000', NULL, 2, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (383, '2023-11-12 19:24:32', 480, NULL, NULL, 'IPAY2023/11/0378', NULL, 'cash', '', '', '', '', '', '', '107016.2500', NULL, 2, NULL, 'received', '', '107016.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (384, '2023-11-12 20:11:52', 482, NULL, NULL, 'IPAY2023/11/0379', NULL, 'cash', '', '', '', '', '', '', '25305.5000', NULL, 2, NULL, 'received', '', '25305.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (385, '2023-11-12 20:18:27', 483, NULL, NULL, 'IPAY2023/11/0380', NULL, 'cash', '', '', '', '', '', '', '118250.0000', NULL, 2, NULL, 'received', '', '118250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (386, '2023-11-12 20:39:00', 484, NULL, NULL, 'IPAY2023/11/0381', NULL, 'cash', '', '', '', '', '', '', '4730.0000', NULL, 2, NULL, 'received', '', '4730.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (387, '2023-11-12 20:47:14', 485, NULL, NULL, 'IPAY2023/11/0382', NULL, 'cash', '', '', '', '', '', '', '20457.2500', NULL, 2, NULL, 'received', '', '20457.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (388, '2023-11-13 11:00:09', 486, NULL, NULL, 'IPAY2023/11/0383', NULL, 'cash', '', '', '', '', '', '', '22231.0000', NULL, 2, NULL, 'received', '', '22231.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (390, '2023-11-13 12:35:56', 490, NULL, NULL, 'IPAY2023/11/0385', NULL, 'cash', '', '', '', '', '', '', '19393.0000', NULL, 2, NULL, 'received', '', '19393.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (391, '2023-11-13 12:44:40', 491, NULL, NULL, 'IPAY2023/11/0386', NULL, 'cash', '', '', '', '', '', '', '28380.0000', NULL, 2, NULL, 'received', '', '28380.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (392, '2023-11-13 13:08:56', 492, NULL, NULL, 'IPAY2023/11/0387', NULL, 'cash', '', '', '', '', '', '', '33701.2500', NULL, 2, NULL, 'received', '', '33701.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (393, '2023-11-13 14:55:31', 494, NULL, NULL, 'IPAY2023/11/0388', NULL, 'cash', '', '', '', '', '', '', '4138.7500', NULL, 2, NULL, 'received', '', '4138.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (394, '2023-11-13 16:08:09', 496, NULL, NULL, 'IPAY2023/11/0389', NULL, 'cash', '', '', '', '', '', '', '52857.7500', NULL, 2, NULL, 'received', '', '52857.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (395, '2023-11-13 19:36:47', 500, NULL, NULL, 'IPAY2023/11/0390', NULL, 'cash', '', '', '', '', '', '', '64564.5000', NULL, 2, NULL, 'received', '', '64564.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (396, '2023-11-13 19:45:34', 501, NULL, NULL, 'IPAY2023/11/0391', NULL, 'cash', '', '', '', '', '', '', '67993.7500', NULL, 2, NULL, 'received', '', '67993.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (397, '2023-11-13 19:59:43', 502, NULL, NULL, 'IPAY2023/11/0392', NULL, 'cash', '', '', '', '', '', '', '33937.7500', NULL, 2, NULL, 'received', '', '33937.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (398, '2023-11-13 20:21:54', 504, NULL, NULL, 'IPAY2023/11/0393', NULL, 'cash', '', '', '', '', '', '', '591.2500', NULL, 2, NULL, 'received', '', '591.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (399, '2023-11-13 20:22:48', 505, NULL, NULL, 'IPAY2023/11/0394', NULL, 'cash', '', '', '', '', '', '', '591.2500', NULL, 2, NULL, 'received', '', '591.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (400, '2023-11-13 20:23:43', 506, NULL, NULL, 'IPAY2023/11/0395', NULL, 'cash', '', '', '', '', '', '', '591.2500', NULL, 2, NULL, 'received', '', '591.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (401, '2023-11-13 20:51:38', 507, NULL, NULL, 'IPAY2023/11/0396', NULL, 'cash', '', '', '', '', '', '', '51084.0000', NULL, 2, NULL, 'received', '', '51084.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (402, '2023-11-13 22:08:29', 509, NULL, NULL, 'IPAY2023/11/0397', NULL, 'cash', '', '', '', '', '', '', '34647.2500', NULL, 2, NULL, 'received', '', '34647.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (405, '2023-11-14 11:50:04', 515, NULL, NULL, 'IPAY2023/11/0400', NULL, 'cash', '', '', '', '', '', '', '46827.0000', NULL, 2, NULL, 'received', '', '46827.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (406, '2023-11-14 13:08:31', 518, NULL, NULL, 'IPAY2023/11/0401', NULL, 'cash', '', '', '', '', '', '', '42215.2500', NULL, 2, NULL, 'received', '', '42215.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (407, '2023-11-14 13:32:10', 520, NULL, NULL, 'IPAY2023/11/0402', NULL, 'cash', '', '', '', '', '', '', '197241.0000', NULL, 2, NULL, 'received', '', '197241.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (408, '2023-11-14 13:46:22', 522, NULL, NULL, 'IPAY2023/11/0403', NULL, 'cash', '', '', '', '', '', '', '3547.5000', NULL, 2, NULL, 'received', '', '3547.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (409, '2023-11-14 13:48:47', 523, NULL, NULL, 'IPAY2023/11/0404', NULL, 'cash', '', '', '', '', '', '', '24004.7500', NULL, 2, NULL, 'received', '', '24004.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (411, '2023-11-14 14:57:25', 525, NULL, NULL, 'IPAY2023/11/0406', NULL, 'cash', '', '', '', '', '', '', '15963.7500', NULL, 2, NULL, 'received', '', '15963.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (412, '2023-11-14 19:14:49', 528, NULL, NULL, 'IPAY2023/11/0407', NULL, 'cash', '', '', '', '', '', '', '53922.0000', NULL, 3, NULL, 'received', '', '53922.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (413, '2023-11-14 19:28:34', 529, NULL, NULL, 'IPAY2023/11/0408', NULL, 'cash', '', '', '', '', '', '', '17028.0000', NULL, 3, NULL, 'received', '', '17028.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (414, '2023-11-14 21:18:59', 533, NULL, NULL, 'IPAY2023/11/0409', NULL, 'cash', '', '', '', '', '', '', '41032.7500', NULL, 3, NULL, 'received', '', '41032.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (415, '2023-11-14 21:26:31', 534, NULL, NULL, 'IPAY2023/11/0410', NULL, 'cash', '', '', '', '', '', '', '4730.0000', NULL, 3, NULL, 'received', '', '4730.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (416, '2023-11-14 22:18:47', 535, NULL, NULL, 'IPAY2023/11/0411', NULL, 'cash', '', '', '', '', '', '', '2365.0000', NULL, 3, NULL, 'received', '', '2365.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (417, '2023-11-14 22:20:50', 536, NULL, NULL, 'IPAY2023/11/0412', NULL, 'cash', '', '', '', '', '', '', '5321.2500', NULL, 3, NULL, 'received', '', '5321.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (419, '2023-11-15 13:51:42', 540, NULL, NULL, 'IPAY2023/11/0414', NULL, 'cash', '', '', '', '', '', '', '61726.5000', NULL, 2, NULL, 'received', '', '61726.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (420, '2023-11-15 14:02:06', 542, NULL, NULL, 'IPAY2023/11/0415', NULL, 'cash', '', '', '', '', '', '', '31927.5000', NULL, 2, NULL, 'received', '', '31927.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (421, '2023-11-15 14:04:32', 543, NULL, NULL, 'IPAY2023/11/0416', NULL, 'cash', '', '', '', '', '', '', '10642.5000', NULL, 2, NULL, 'received', '', '10642.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (422, '2023-11-15 14:08:48', 544, NULL, NULL, 'IPAY2023/11/0417', NULL, 'cash', '', '', '', '', '', '', '55577.5000', NULL, 2, NULL, 'received', '', '55577.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (423, '2023-11-15 14:49:23', 546, NULL, NULL, 'IPAY2023/11/0418', NULL, 'cash', '', '', '', '', '', '', '5321.2500', NULL, 2, NULL, 'received', '', '5321.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (424, '2023-11-15 15:28:11', 548, NULL, NULL, 'IPAY2023/11/0419', NULL, 'cash', '', '', '', '', '', '', '33346.5000', NULL, 2, NULL, 'received', '', '33346.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (425, '2023-11-15 16:13:53', 549, NULL, NULL, 'IPAY2023/11/0420', NULL, 'cash', '', '', '', '', '', '', '75916.5000', NULL, 2, NULL, 'received', '', '75916.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (426, '2023-11-15 16:36:12', 550, NULL, NULL, 'IPAY2023/11/0421', NULL, 'cash', '', '', '', '', '', '', '5321.2500', NULL, 2, NULL, 'received', '', '5321.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (427, '2023-11-15 18:46:59', 554, NULL, NULL, 'IPAY2023/11/0422', NULL, 'cash', '', '', '', '', '', '', '69176.2500', NULL, 2, NULL, 'received', '', '69176.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (428, '2023-11-15 18:53:11', 555, NULL, NULL, 'IPAY2023/11/0423', NULL, 'cash', '', '', '', '', '', '', '62317.7500', NULL, 2, NULL, 'received', '', '62317.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (429, '2023-11-15 19:14:37', 556, NULL, NULL, 'IPAY2023/11/0424', NULL, 'cash', '', '', '', '', '', '', '37012.2500', NULL, 2, NULL, 'received', '', '37012.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (430, '2023-11-15 20:13:07', 558, NULL, NULL, 'IPAY2023/11/0425', NULL, 'cash', '', '', '', '', '', '', '33937.7500', NULL, 2, NULL, 'received', '', '33937.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (431, '2023-11-15 20:33:29', 559, NULL, NULL, 'IPAY2023/11/0426', NULL, 'cash', '', '', '', '', '', '', '19866.0000', NULL, 2, NULL, 'received', '', '19866.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (433, '2023-11-16 14:56:29', 562, NULL, NULL, 'IPAY2023/11/0428', NULL, 'cash', '', '', '', '', '', '', '9341.7500', NULL, 3, NULL, 'received', '', '9341.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (434, '2023-11-16 15:26:42', 563, NULL, NULL, 'IPAY2023/11/0429', NULL, 'cash', '', '', '', '', '', '', '28025.2500', NULL, 3, NULL, 'received', '', '28025.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (435, '2023-11-16 16:52:20', 565, NULL, NULL, 'IPAY2023/11/0430', NULL, 'cash', '', '', '', '', '', '', '2365.0000', NULL, 3, NULL, 'received', '', '2365.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (436, '2023-11-16 20:06:00', 568, NULL, NULL, 'IPAY2023/11/0431', NULL, 'cash', '', '', '', '', '', '', '36302.7500', NULL, 3, NULL, 'received', '', '36302.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (437, '2023-11-16 20:18:17', 569, NULL, NULL, 'IPAY2023/11/0432', NULL, 'cash', '', '', '', '', '', '', '35002.0000', NULL, 3, NULL, 'received', '', '35002.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (438, '2023-11-16 21:22:57', 571, NULL, NULL, 'IPAY2023/11/0433', NULL, 'cash', '', '', '', '', '', '', '5912.5000', NULL, 3, NULL, 'received', '', '5912.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (439, '2023-11-16 21:38:55', 572, NULL, NULL, 'IPAY2023/11/0434', NULL, 'cash', '', '', '', '', '', '', '13480.5000', NULL, 3, NULL, 'received', '', '13480.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (440, '2023-11-16 21:41:20', 573, NULL, NULL, 'IPAY2023/11/0435', NULL, 'cash', '', '', '', '', '', '', '22822.2500', NULL, 3, NULL, 'received', '', '22822.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (441, '2023-11-17 14:07:46', 576, NULL, NULL, 'IPAY2023/11/0436', NULL, 'cash', '', '', '', '', '', '', '50374.5000', NULL, 2, NULL, 'received', '', '50374.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (442, '2023-11-17 18:02:19', 579, NULL, NULL, 'IPAY2023/11/0437', NULL, 'cash', '', '', '', '', '', '', '36894.0000', NULL, 2, NULL, 'received', '', '36894.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (443, '2023-11-17 19:02:05', 580, NULL, NULL, 'IPAY2023/11/0438', NULL, 'cash', '', '', '', '', '', '', '100276.0000', NULL, 2, NULL, 'received', '', '100276.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (444, '2023-11-17 19:05:24', 581, NULL, NULL, 'IPAY2023/11/0439', NULL, 'cash', '', '', '', '', '', '', '60307.5000', NULL, 2, NULL, 'received', '', '60307.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (446, '2023-11-17 20:36:11', 584, NULL, NULL, 'IPAY2023/11/0441', NULL, 'cash', '', '', '', '', '', '', '2365.0000', NULL, 2, NULL, 'received', '', '2365.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (447, '2023-11-17 20:49:50', 585, NULL, NULL, 'IPAY2023/11/0442', NULL, 'cash', '', '', '', '', '', '', '22231.0000', NULL, 2, NULL, 'received', '', '22231.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (448, '2023-11-17 20:59:49', 587, NULL, NULL, 'IPAY2023/11/0443', NULL, 'cash', '', '', '', '', '', '', '21639.7500', NULL, 2, NULL, 'received', '', '21639.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (449, '2023-11-17 21:48:14', 588, NULL, NULL, 'IPAY2023/11/0444', NULL, 'cash', '', '', '', '', '', '', '65983.5000', NULL, 2, NULL, 'received', '', '65983.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (450, '2023-11-17 22:23:05', 591, NULL, NULL, 'IPAY2023/11/0445', NULL, 'cash', '', '', '', '', '', '', '25778.5000', NULL, 2, NULL, 'received', '', '25778.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (451, '2023-11-17 22:28:17', 592, NULL, NULL, 'IPAY2023/11/0446', NULL, 'cash', '', '', '', '', '', '', '20575.5000', NULL, 2, NULL, 'received', '', '20575.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (453, '2023-11-18 14:09:35', 598, NULL, NULL, 'IPAY2023/11/0448', NULL, 'cash', '', '', '', '', '', '', '28143.5000', NULL, 3, NULL, 'received', '', '28143.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (454, '2023-11-18 14:14:27', 599, NULL, NULL, 'IPAY2023/11/0449', NULL, 'cash', '', '', '', '', '', '', '29370.0000', NULL, 3, NULL, 'received', '', '29370.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (455, '2023-11-18 14:22:43', 600, NULL, NULL, 'IPAY2023/11/0450', NULL, 'cash', '', '', '', '', '', '', '28734.7500', NULL, 3, NULL, 'received', '', '28734.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (456, '2023-11-18 16:53:35', 602, NULL, NULL, 'IPAY2023/11/0451', NULL, 'cash', '', '', '', '', '', '', '7810.0000', NULL, 3, NULL, 'received', '', '7810.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (457, '2023-11-18 17:48:12', 605, NULL, NULL, 'IPAY2023/11/0452', NULL, 'cash', '', '', '', '', '', '', '19580.0000', NULL, 3, NULL, 'received', '', '19580.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (458, '2023-11-18 18:07:33', 606, NULL, NULL, 'IPAY2023/11/0453', NULL, 'cash', '', '', '', '', '', '', '10287.7500', NULL, 3, NULL, 'received', '', '10287.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (459, '2023-11-18 19:56:12', 609, NULL, NULL, 'IPAY2023/11/0454', NULL, 'cash', '', '', '', '', '', '', '53922.0000', NULL, 3, NULL, 'received', '', '53922.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (460, '2023-11-18 20:01:12', 610, NULL, NULL, 'IPAY2023/11/0455', NULL, 'cash', '', '', '', '', '', '', '39380.0000', NULL, 3, NULL, 'received', '', '39380.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (461, '2023-11-18 20:39:26', 613, NULL, NULL, 'IPAY2023/11/0456', NULL, 'cash', '', '', '', '', '', '', '3547.5000', NULL, 3, NULL, 'received', '', '3547.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (462, '2023-11-18 21:03:30', 615, NULL, NULL, 'IPAY2023/11/0457', NULL, 'cash', '', '', '', '', '', '', '37620.0000', NULL, 3, NULL, 'received', '', '37620.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (463, '2023-11-18 21:29:17', 617, NULL, NULL, 'IPAY2023/11/0458', NULL, 'cash', '', '', '', '', '', '', '1182.5000', NULL, 3, NULL, 'received', '', '1182.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (464, '2023-11-18 21:32:33', 618, NULL, NULL, 'IPAY2023/11/0459', NULL, 'cash', '', '', '', '', '', '', '46827.0000', NULL, 3, NULL, 'received', '', '46827.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (465, '2023-11-18 22:37:51', 620, NULL, NULL, 'IPAY2023/11/0460', NULL, 'cash', '', '', '', '', '', '', '32120.0000', NULL, 3, NULL, 'received', '', '32120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (466, '2023-11-19 12:50:42', 621, NULL, NULL, 'IPAY2023/11/0461', NULL, 'cash', '', '', '', '', '', '', '12889.2500', NULL, 3, NULL, 'received', '', '12889.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (467, '2023-11-19 15:06:35', 624, NULL, NULL, 'IPAY2023/11/0462', NULL, 'cash', '', '', '', '', '', '', '43989.0000', NULL, 3, NULL, 'received', '', '43989.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (468, '2023-11-19 16:05:44', 626, NULL, NULL, 'IPAY2023/11/0463', NULL, 'cash', '', '', '', '', '', '', '87340.0000', NULL, 3, NULL, 'received', '', '87340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (469, '2023-11-19 16:08:54', 627, NULL, NULL, 'IPAY2023/11/0464', NULL, 'cash', '', '', '', '', '', '', '72710.0000', NULL, 3, NULL, 'received', '', '72710.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (470, '2023-11-19 18:01:03', 630, NULL, NULL, 'IPAY2023/11/0465', NULL, 'cash', '', '', '', '', '', '', '2750.0000', NULL, 3, NULL, 'received', '', '2750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (472, '2023-11-19 18:07:29', 632, NULL, NULL, 'IPAY2023/11/0467', NULL, 'cash', '', '', '', '', '', '', '27170.0000', NULL, 3, NULL, 'received', '', '27170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (473, '2023-11-19 18:30:36', 635, NULL, NULL, 'IPAY2023/11/0468', NULL, 'cash', '', '', '', '', '', '', '27830.0000', NULL, 3, NULL, 'received', '', '27830.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (474, '2023-11-19 19:12:48', 637, NULL, NULL, 'IPAY2023/11/0469', NULL, 'cash', '', '', '', '', '', '', '109120.0000', NULL, 3, NULL, 'received', '', '109120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (475, '2023-11-19 19:23:55', 639, NULL, NULL, 'IPAY2023/11/0470', NULL, 'cash', '', '', '', '', '', '', '38500.0000', NULL, 3, NULL, 'received', '', '38500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (476, '2023-11-19 20:05:13', 641, NULL, NULL, 'IPAY2023/11/0471', NULL, 'cash', '', '', '', '', '', '', '60830.0000', NULL, 3, NULL, 'received', '', '60830.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (478, '2023-11-19 20:34:16', 643, NULL, NULL, 'IPAY2023/11/0473', NULL, 'cash', '', '', '', '', '', '', '13598.7500', NULL, 3, NULL, 'received', '', '13598.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (479, '2023-11-19 20:39:43', 644, NULL, NULL, 'IPAY2023/11/0474', NULL, 'cash', '', '', '', '', '', '', '24530.0000', NULL, 3, NULL, 'received', '', '24530.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (480, '2023-11-19 20:48:09', 645, NULL, NULL, 'IPAY2023/11/0475', NULL, 'cash', '', '', '', '', '', '', '48950.0000', NULL, 3, NULL, 'received', '', '48950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (481, '2023-11-20 16:21:18', 649, NULL, NULL, 'IPAY2023/11/0476', NULL, 'cash', '', '', '', '', '', '', '19690.0000', NULL, 3, NULL, 'received', '', '19690.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (485, '2023-11-20 16:37:31', 653, NULL, NULL, 'IPAY2023/11/0480', NULL, 'cash', '', '', '', '', '', '', '44000.0000', NULL, 3, NULL, 'received', '', '44000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (486, '2023-11-20 16:55:26', 654, NULL, NULL, 'IPAY2023/11/0481', NULL, 'cash', '', '', '', '', '', '', '43010.0000', NULL, 3, NULL, 'received', '', '43010.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (487, '2023-11-20 18:35:17', 655, NULL, NULL, 'IPAY2023/11/0482', NULL, 'cash', '', '', '', '', '', '', '51260.0000', NULL, 3, NULL, 'received', '', '51260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (488, '2023-11-20 19:11:34', 660, NULL, NULL, 'IPAY2023/11/0483', NULL, 'cash', '', '', '', '', '', '', '8800.0000', NULL, 3, NULL, 'received', '', '8800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (489, '2023-11-20 19:20:20', 661, NULL, NULL, 'IPAY2023/11/0484', NULL, 'cash', '', '', '', '', '', '', '30470.0000', NULL, 3, NULL, 'received', '', '30470.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (490, '2023-11-20 20:12:38', 665, NULL, NULL, 'IPAY2023/11/0485', NULL, 'cash', '', '', '', '', '', '', '61600.0000', NULL, 3, NULL, 'received', '', '61600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (491, '2023-11-20 20:32:13', 666, NULL, NULL, 'IPAY2023/11/0486', NULL, 'cash', '', '', '', '', '', '', '104830.0000', NULL, 3, NULL, 'received', '', '104830.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (492, '2023-11-20 20:52:01', 667, NULL, NULL, 'IPAY2023/11/0487', NULL, 'cash', '', '', '', '', '', '', '28380.0000', NULL, 3, NULL, 'received', '', '28380.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (493, '2023-11-20 20:53:16', 668, NULL, NULL, 'IPAY2023/11/0488', NULL, 'cash', '', '', '', '', '', '', '19030.0000', NULL, 3, NULL, 'received', '', '19030.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (494, '2023-11-20 21:16:26', 672, NULL, NULL, 'IPAY2023/11/0489', NULL, 'cash', '', '', '', '', '', '', '10340.0000', NULL, 3, NULL, 'received', '', '10340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (495, '2023-11-20 21:32:52', 674, NULL, NULL, 'IPAY2023/11/0490', NULL, 'cash', '', '', '', '', '', '', '143000.0000', NULL, 3, NULL, 'received', '', '143000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (497, '2023-11-20 21:48:22', 676, NULL, NULL, 'IPAY2023/11/0492', NULL, 'cash', '', '', '', '', '', '', '22000.0000', NULL, 3, NULL, 'received', '', '22000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (498, '2023-11-20 21:52:41', 677, NULL, NULL, 'IPAY2023/11/0493', NULL, 'cash', '', '', '', '', '', '', '38170.0000', NULL, 3, NULL, 'received', '', '38170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (499, '2023-11-21 14:15:39', 679, NULL, NULL, 'IPAY2023/11/0494', NULL, 'cash', '', '', '', '', '', '', '38720.0000', NULL, 3, NULL, 'received', '', '38720.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (502, '2023-11-21 17:29:23', 683, NULL, NULL, 'IPAY2023/11/0497', NULL, 'cash', '', '', '', '', '', '', '60720.0000', NULL, 2, NULL, 'received', '', '60720.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (503, '2023-11-21 19:10:03', 687, NULL, NULL, 'IPAY2023/11/0498', NULL, 'cash', '', '', '', '', '', '', '9790.0000', NULL, 2, NULL, 'received', '', '9790.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (504, '2023-11-21 19:11:53', 688, NULL, NULL, 'IPAY2023/11/0499', NULL, 'cash', '', '', '', '', '', '', '39820.0000', NULL, 2, NULL, 'received', '', '39820.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (505, '2023-11-21 19:43:40', 690, NULL, NULL, 'IPAY2023/11/0500', NULL, 'cash', '', '', '', '', '', '', '54230.0000', NULL, 2, NULL, 'received', '', '54230.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (506, '2023-11-21 20:13:49', 691, NULL, NULL, 'IPAY2023/11/0501', NULL, 'cash', '', '', '', '', '', '', '22349.2500', NULL, 2, NULL, 'received', '', '22349.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (507, '2023-11-22 13:37:13', 692, NULL, NULL, 'IPAY2023/11/0502', NULL, 'cash', '', '', '', '', '', '', '32755.2500', NULL, 2, NULL, 'received', '', '32755.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (508, '2023-11-22 14:54:45', 694, NULL, NULL, 'IPAY2023/11/0503', NULL, 'cash', '', '', '', '', '', '', '19866.0000', NULL, 2, NULL, 'received', '', '19866.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (509, '2023-11-22 15:45:24', 695, NULL, NULL, 'IPAY2023/11/0504', NULL, 'cash', '', '', '', '', '', '', '35120.2500', NULL, 2, NULL, 'received', '', '35120.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (510, '2023-11-22 16:36:18', 697, NULL, NULL, 'IPAY2023/11/0505', NULL, 'cash', '', '', '', '', '', '', '63500.2500', NULL, 2, NULL, 'received', '', '63500.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (511, '2023-11-22 16:40:42', 698, NULL, NULL, 'IPAY2023/11/0506', NULL, 'cash', '', '', '', '', '', '', '48600.7500', NULL, 2, NULL, 'received', '', '48600.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (512, '2023-11-22 17:27:51', 699, NULL, NULL, 'IPAY2023/11/0507', NULL, 'cash', '', '', '', '', '', '', '15845.5000', NULL, 2, NULL, 'received', '', '15845.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (513, '2023-11-22 17:30:02', 700, NULL, NULL, 'IPAY2023/11/0508', NULL, 'cash', '', '', '', '', '', '', '4400.0000', NULL, 2, NULL, 'received', '', '4400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (514, '2023-11-22 18:54:27', 702, NULL, NULL, 'IPAY2023/11/0509', NULL, 'cash', '', '', '', '', '', '', '69300.0000', NULL, 2, NULL, 'received', '', '69300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (515, '2023-11-22 20:43:02', 708, NULL, NULL, 'IPAY2023/11/0510', NULL, 'cash', '', '', '', '', '', '', '2365.0000', NULL, 2, NULL, 'received', '', '2365.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (516, '2023-11-22 20:51:13', 709, NULL, NULL, 'IPAY2023/11/0511', NULL, 'cash', '', '', '', '', '', '', '27500.0000', NULL, 2, NULL, 'received', '', '27500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (517, '2023-11-22 21:16:18', 711, NULL, NULL, 'IPAY2023/11/0512', NULL, 'cash', '', '', '', '', '', '', '42130.0000', NULL, 2, NULL, 'received', '', '42130.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (518, '2023-11-22 21:31:29', 712, NULL, NULL, 'IPAY2023/11/0513', NULL, 'cash', '', '', '', '', '', '', '2200.0000', NULL, 2, NULL, 'received', '', '2200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (519, '2023-11-22 21:48:12', 713, NULL, NULL, 'IPAY2023/11/0514', NULL, 'cash', '', '', '', '', '', '', '25080.0000', NULL, 2, NULL, 'received', '', '25080.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (520, '2023-11-23 13:12:43', 714, NULL, NULL, 'IPAY2023/11/0515', NULL, 'cash', '', '', '', '', '', '', '112860.0000', NULL, 2, NULL, 'received', '', '112860.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (521, '2023-11-23 13:28:12', 715, NULL, NULL, 'IPAY2023/11/0516', NULL, 'cash', '', '', '', '', '', '', '19866.0000', NULL, 2, NULL, 'received', '', '19866.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (522, '2023-11-23 14:32:57', 716, NULL, NULL, 'IPAY2023/11/0517', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (523, '2023-11-23 14:58:21', 717, NULL, NULL, 'IPAY2023/11/0518', NULL, 'cash', '', '', '', '', '', '', '11440.0000', NULL, 2, NULL, 'received', '', '11440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (524, '2023-11-23 15:32:55', 718, NULL, NULL, 'IPAY2023/11/0519', NULL, 'cash', '', '', '', '', '', '', '11440.0000', NULL, 2, NULL, 'received', '', '11440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (525, '2023-11-23 16:07:27', 721, NULL, NULL, 'IPAY2023/11/0520', NULL, 'cash', '', '', '', '', '', '', '23980.0000', NULL, 2, NULL, 'received', '', '23980.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (526, '2023-11-23 16:45:44', 722, NULL, NULL, 'IPAY2023/11/0521', NULL, 'cash', '', '', '', '', '', '', '85800.0000', NULL, 2, NULL, 'received', '', '85800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (527, '2023-11-23 17:59:11', 727, NULL, NULL, 'IPAY2023/11/0522', NULL, 'cash', '', '', '', '', '', '', '1650.0000', NULL, 2, NULL, 'received', '', '1650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (528, '2023-11-23 18:06:10', 728, NULL, NULL, 'IPAY2023/11/0523', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (529, '2023-11-23 18:29:31', 729, NULL, NULL, 'IPAY2023/11/0524', NULL, 'cash', '', '', '', '', '', '', '35711.5000', NULL, 2, NULL, 'received', '', '35711.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (530, '2023-11-23 18:35:16', 730, NULL, NULL, 'IPAY2023/11/0525', NULL, 'cash', '', '', '', '', '', '', '27280.0000', NULL, 2, NULL, 'received', '', '27280.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (531, '2023-11-23 18:59:00', 732, NULL, NULL, 'IPAY2023/11/0526', NULL, 'cash', '', '', '', '', '', '', '22660.0000', NULL, 2, NULL, 'received', '', '22660.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (532, '2023-11-23 19:42:39', 733, NULL, NULL, 'IPAY2023/11/0527', NULL, 'cash', '', '', '', '', '', '', '30690.0000', NULL, 2, NULL, 'received', '', '30690.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (534, '2023-11-23 19:51:21', 735, NULL, NULL, 'IPAY2023/11/0529', NULL, 'cash', '', '', '', '', '', '', '1650.0000', NULL, 2, NULL, 'received', '', '1650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (535, '2023-11-23 20:04:06', 736, NULL, NULL, 'IPAY2023/11/0530', NULL, 'cash', '', '', '', '', '', '', '103840.0000', NULL, 2, NULL, 'received', '', '103840.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (536, '2023-11-23 22:04:58', 738, NULL, NULL, 'IPAY2023/11/0531', NULL, 'cash', '', '', '', '', '', '', '39820.0000', NULL, 2, NULL, 'received', '', '39820.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (537, '2023-11-23 22:21:36', 739, NULL, NULL, 'IPAY2023/11/0532', NULL, 'cash', '', '', '', '', '', '', '9790.0000', NULL, 2, NULL, 'received', '', '9790.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (538, '2023-11-23 22:49:54', 740, NULL, NULL, 'IPAY2023/11/0533', NULL, 'cash', '', '', '', '', '', '', '51700.0000', NULL, 2, NULL, 'received', '', '51700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (539, '2023-11-24 11:28:07', 741, NULL, NULL, 'IPAY2023/11/0534', NULL, 'cash', '', '', '', '', '', '', '1995.0000', NULL, 2, NULL, 'received', '', '1995.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (540, '2023-11-24 16:43:45', 743, NULL, NULL, 'IPAY2023/11/0535', NULL, 'cash', '', '', '', '', '', '', '30765.0000', NULL, 2, NULL, 'received', '', '30765.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (541, '2023-11-24 18:37:37', 745, NULL, NULL, 'IPAY2023/11/0536', NULL, 'cash', '', '', '', '', '', '', '52938.3800', NULL, 2, NULL, 'received', '', '52938.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (542, '2023-11-24 19:53:09', 748, NULL, NULL, 'IPAY2023/11/0537', NULL, 'cash', '', '', '', '', '', '', '21897.7500', NULL, 2, NULL, 'received', '', '21897.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (543, '2023-11-24 20:00:16', 749, NULL, NULL, 'IPAY2023/11/0538', NULL, 'cash', '', '', '', '', '', '', '19075.8800', NULL, 2, NULL, 'received', '', '19075.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (544, '2023-11-24 20:18:45', 752, NULL, NULL, 'IPAY2023/11/0539', NULL, 'cash', '', '', '', '', '', '', '11739.0000', NULL, 2, NULL, 'received', '', '11739.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (545, '2023-11-24 20:19:04', 753, NULL, NULL, 'IPAY2023/11/0540', NULL, 'cash', '', '', '', '', '', '', '41312.2500', NULL, 2, NULL, 'received', '', '41312.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (546, '2023-11-24 20:19:27', 754, NULL, NULL, 'IPAY2023/11/0541', NULL, 'cash', '', '', '', '', '', '', '2257.5000', NULL, 2, NULL, 'received', '', '2257.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (547, '2023-11-24 20:24:18', 755, NULL, NULL, 'IPAY2023/11/0542', NULL, 'cash', '', '', '', '', '', '', '4515.0000', NULL, 2, NULL, 'received', '', '4515.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (548, '2023-11-24 20:40:00', NULL, NULL, 6, 'POP2023/11/0005', NULL, 'cash', '', '', '', '', '', 'Visa', '312502.5000', NULL, 2, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (549, '2023-11-24 21:03:17', 756, NULL, NULL, 'IPAY2023/11/0543', NULL, 'cash', '', '', '', '', '', '', '35781.3800', NULL, 2, NULL, 'received', '', '35781.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (550, '2023-11-24 22:24:01', 758, NULL, NULL, 'IPAY2023/11/0544', NULL, 'cash', '', '', '', '', '', '', '1128.7500', NULL, 2, NULL, 'received', '', '1128.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (551, '2023-11-24 22:41:33', 759, NULL, NULL, 'IPAY2023/11/0545', NULL, 'cash', '', '', '', '', '', '', '43456.8800', NULL, 2, NULL, 'received', '', '43456.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (552, '2023-11-25 11:03:50', 760, NULL, NULL, 'IPAY2023/11/0546', NULL, 'cash', '', '', '', '', '', '', '59146.5000', NULL, 2, NULL, 'received', '', '59146.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (554, '2023-11-25 11:45:13', 762, NULL, NULL, 'IPAY2023/11/0548', NULL, 'cash', '', '', '', '', '', '', '69756.7500', NULL, 2, NULL, 'received', '', '69756.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (555, '2023-11-25 12:01:04', 763, NULL, NULL, 'IPAY2023/11/0549', NULL, 'cash', '', '', '', '', '', '', '17382.7500', NULL, 2, NULL, 'received', '', '17382.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (557, '2023-11-25 15:33:13', 768, NULL, NULL, 'IPAY2023/11/0551', NULL, 'cash', '', '', '', '', '', '', '74046.0000', NULL, 2, NULL, 'received', '', '74046.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (558, '2023-11-25 16:10:18', 769, NULL, NULL, 'IPAY2023/11/0552', NULL, 'cash', '', '', '', '', '', '', '50342.2500', NULL, 2, NULL, 'received', '', '50342.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (559, '2023-11-25 16:18:39', 770, NULL, NULL, 'IPAY2023/11/0553', NULL, 'cash', '', '', '', '', '', '', '17947.1300', NULL, 2, NULL, 'received', '', '17947.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (560, '2023-11-25 19:41:06', 771, NULL, NULL, 'IPAY2023/11/0554', NULL, 'cash', '', '', '', '', '', '', '17115.0000', NULL, 2, NULL, 'received', '', '17115.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (561, '2023-11-25 20:26:32', 773, NULL, NULL, 'IPAY2023/11/0555', NULL, 'cash', '', '', '', '', '', '', '16705.5000', NULL, 2, NULL, 'received', '', '16705.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (563, '2023-11-25 22:36:13', 776, NULL, NULL, 'IPAY2023/11/0557', NULL, 'cash', '', '', '', '', '', '', '33862.5000', NULL, 2, NULL, 'received', '', '33862.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (564, '2023-11-25 22:38:47', 777, NULL, NULL, 'IPAY2023/11/0558', NULL, 'cash', '', '', '', '', '', '', '96395.2500', NULL, 2, NULL, 'received', '', '96395.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (565, '2023-11-26 13:28:44', 779, NULL, NULL, 'IPAY2023/11/0559', NULL, 'cash', '', '', '', '', '', '', '53164.1300', NULL, 2, NULL, 'received', '', '53164.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (566, '2023-11-26 15:22:40', 783, NULL, NULL, 'IPAY2023/11/0560', NULL, 'cash', '', '', '', '', '', '', '32959.5000', NULL, 2, NULL, 'received', '', '32959.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (568, '2023-11-26 15:36:02', 785, NULL, NULL, 'IPAY2023/11/0562', NULL, 'cash', '', '', '', '', '', '', '11739.0000', NULL, 2, NULL, 'received', '', '11739.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (569, '2023-11-26 15:36:57', 786, NULL, NULL, 'IPAY2023/11/0563', NULL, 'cash', '', '', '', '', '', '', '49213.5000', NULL, 2, NULL, 'received', '', '49213.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (571, '2023-11-26 17:44:12', 790, NULL, NULL, 'IPAY2023/11/0565', NULL, 'cash', '', '', '', '', '', '', '42215.2500', NULL, 2, NULL, 'received', '', '42215.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (573, '2023-11-26 19:38:15', 795, NULL, NULL, 'IPAY2023/11/0567', NULL, 'cash', '', '', '', '', '', '', '31379.2500', NULL, 2, NULL, 'received', '', '31379.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (574, '2023-11-26 19:50:42', 796, NULL, NULL, 'IPAY2023/11/0568', NULL, 'cash', '', '', '', '', '', '', '32733.7500', NULL, 2, NULL, 'received', '', '32733.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (575, '2023-11-26 20:05:07', 797, NULL, NULL, 'IPAY2023/11/0569', NULL, 'cash', '', '', '', '', '', '', '225750.0000', NULL, 2, NULL, 'received', '', '225750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (576, '2023-11-26 20:06:14', 798, NULL, NULL, 'IPAY2023/11/0570', NULL, 'cash', '', '', '', '', '', '', '13996.5000', NULL, 2, NULL, 'received', '', '13996.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (577, '2023-11-26 20:11:20', 799, NULL, NULL, 'IPAY2023/11/0571', NULL, 'cash', '', '', '', '', '', '', '564.3800', NULL, 2, NULL, 'received', '', '564.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (578, '2023-11-26 20:17:14', 801, NULL, NULL, 'IPAY2023/11/0572', NULL, 'cash', '', '', '', '', '', '', '1693.1300', NULL, 2, NULL, 'received', '', '1693.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (579, '2023-11-26 20:47:27', 802, NULL, NULL, 'IPAY2023/11/0573', NULL, 'cash', '', '', '', '', '', '', '23478.0000', NULL, 2, NULL, 'received', '', '23478.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (580, '2023-11-26 21:01:20', 803, NULL, NULL, 'IPAY2023/11/0574', NULL, 'cash', '', '', '', '', '', '', '28557.3800', NULL, 2, NULL, 'received', '', '28557.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (582, '2023-11-26 21:10:12', 805, NULL, NULL, 'IPAY2023/11/0576', NULL, 'cash', '', '', '', '', '', '', '2257.5000', NULL, 2, NULL, 'received', '', '2257.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (583, '2023-11-26 21:18:30', 807, NULL, NULL, 'IPAY2023/11/0577', NULL, 'cash', '', '', '', '', '', '', '79915.5000', NULL, 2, NULL, 'received', '', '79915.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (584, '2023-11-26 21:36:56', 808, NULL, NULL, 'IPAY2023/11/0578', NULL, 'cash', '', '', '', '', '', '', '9481.5000', NULL, 2, NULL, 'received', '', '9481.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (586, '2023-11-26 22:02:21', 811, NULL, NULL, 'IPAY2023/11/0580', NULL, 'cash', '', '', '', '', '', '', '13432.1300', NULL, 2, NULL, 'received', '', '13432.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (587, '2023-11-26 22:09:53', 812, NULL, NULL, 'IPAY2023/11/0581', NULL, 'cash', '', '', '', '', '', '', '21784.8800', NULL, 2, NULL, 'received', '', '21784.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (588, '2023-11-26 22:36:03', 814, NULL, NULL, 'IPAY2023/11/0582', NULL, 'cash', '', '', '', '', '', '', '35781.3800', NULL, 2, NULL, 'received', '', '35781.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (589, '2023-11-26 22:41:59', 815, NULL, NULL, 'IPAY2023/11/0583', NULL, 'cash', '', '', '', '', '', '', '564.3800', NULL, 2, NULL, 'received', '', '564.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (590, '2023-11-26 22:44:06', 816, NULL, NULL, 'IPAY2023/11/0584', NULL, 'cash', '', '', '', '', '', '', '6772.5000', NULL, 2, NULL, 'received', '', '6772.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (591, '2023-11-27 13:43:14', 818, NULL, NULL, 'IPAY2023/11/0585', NULL, 'cash', '', '', '', '', '', '', '212092.1300', NULL, 2, NULL, 'received', '', '212092.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (592, '2023-11-27 13:46:02', 819, NULL, NULL, 'IPAY2023/11/0586', NULL, 'cash', '', '', '', '', '', '', '5643.7500', NULL, 2, NULL, 'received', '', '5643.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (593, '2023-11-27 18:16:26', 821, NULL, NULL, 'IPAY2023/11/0587', NULL, 'cash', '', '', '', '', '', '', '109827.3800', NULL, 2, NULL, 'received', '', '109827.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (594, '2023-11-27 18:29:50', 822, NULL, NULL, 'IPAY2023/11/0588', NULL, 'cash', '', '', '', '', '', '', '30702.0000', NULL, 2, NULL, 'received', '', '30702.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (595, '2023-11-27 18:58:46', 824, NULL, NULL, 'IPAY2023/11/0589', NULL, 'cash', '', '', '', '', '', '', '102264.7500', NULL, 2, NULL, 'received', '', '102264.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (596, '2023-11-27 20:47:53', 826, NULL, NULL, 'IPAY2023/11/0590', NULL, 'cash', '', '', '', '', '', '', '16366.8800', NULL, 2, NULL, 'received', '', '16366.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (598, '2023-11-28 13:59:46', 830, NULL, NULL, 'IPAY2023/11/0592', NULL, 'cash', '', '', '', '', '', '', '9481.5000', NULL, 2, NULL, 'received', '', '9481.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (599, '2023-11-28 14:06:11', 831, NULL, NULL, 'IPAY2023/11/0593', NULL, 'cash', '', '', '', '', '', '', '16254.0000', NULL, 2, NULL, 'received', '', '16254.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (600, '2023-11-28 14:37:20', 832, NULL, NULL, 'IPAY2023/11/0594', NULL, 'cash', '', '', '', '', '', '', '32959.5000', NULL, 2, NULL, 'received', '', '32959.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (601, '2023-11-28 14:42:12', 833, NULL, NULL, 'IPAY2023/11/0595', NULL, 'cash', '', '', '', '', '', '', '34201.1300', NULL, 2, NULL, 'received', '', '34201.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (602, '2023-11-28 16:35:06', 835, NULL, NULL, 'IPAY2023/11/0596', NULL, 'cash', '', '', '', '', '', '', '4740.7500', NULL, 2, NULL, 'received', '', '4740.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (603, '2023-11-28 18:18:43', 837, NULL, NULL, 'IPAY2023/11/0597', NULL, 'cash', '', '', '', '', '', '', '5643.7500', NULL, 2, NULL, 'received', '', '5643.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (604, '2023-11-28 18:30:13', 839, NULL, NULL, 'IPAY2023/11/0598', NULL, 'cash', '', '', '', '', '', '', '15125.2500', NULL, 2, NULL, 'received', '', '15125.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (605, '2023-11-28 19:15:04', 840, NULL, NULL, 'IPAY2023/11/0599', NULL, 'cash', '', '', '', '', '', '', '6772.5000', NULL, 2, NULL, 'received', '', '6772.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (606, '2023-11-28 20:00:34', 841, NULL, NULL, 'IPAY2023/11/0600', NULL, 'cash', '', '', '', '', '', '', '69756.7500', NULL, 2, NULL, 'received', '', '69756.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (607, '2023-11-28 20:01:03', 842, NULL, NULL, 'IPAY2023/11/0601', NULL, 'cash', '', '', '', '', '', '', '62081.2500', NULL, 2, NULL, 'received', '', '62081.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (608, '2023-11-28 22:33:41', 844, NULL, NULL, 'IPAY2023/11/0602', NULL, 'cash', '', '', '', '', '', '', '31379.2500', NULL, 2, NULL, 'received', '', '31379.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (610, '2023-11-29 14:21:27', 847, NULL, NULL, 'IPAY2023/11/0604', NULL, 'cash', '', '', '', '', '', '', '27767.2500', NULL, 2, NULL, 'received', '', '27767.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (611, '2023-11-29 14:30:36', 849, NULL, NULL, 'IPAY2023/11/0605', NULL, 'cash', '', '', '', '', '', '', '23478.0000', NULL, 2, NULL, 'received', '', '23478.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (612, '2023-11-29 14:34:11', 850, NULL, NULL, 'IPAY2023/11/0606', NULL, 'cash', '', '', '', '', '', '', '4515.0000', NULL, 2, NULL, 'received', '', '4515.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (613, '2023-11-29 18:20:35', 853, NULL, NULL, 'IPAY2023/11/0607', NULL, 'cash', '', '', '', '', '', '', '3047.6300', NULL, 3, NULL, 'received', '', '3047.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (614, '2023-11-29 18:51:44', 854, NULL, NULL, 'IPAY2023/11/0608', NULL, 'cash', '', '', '', '', '', '', '52035.3800', NULL, 3, NULL, 'received', '', '52035.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (615, '2023-11-30 12:42:10', 856, NULL, NULL, 'IPAY2023/11/0609', NULL, 'cash', '', '', '', '', '', '', '30137.6300', NULL, 2, NULL, 'received', '', '30137.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (616, '2023-11-30 13:29:25', 857, NULL, NULL, 'IPAY2023/11/0610', NULL, 'cash', '', '', '', '', '', '', '11287.5000', NULL, 2, NULL, 'received', '', '11287.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (617, '2023-11-30 19:08:03', 860, NULL, NULL, 'IPAY2023/11/0611', NULL, 'cash', '', '', '', '', '', '', '6772.5000', NULL, 3, NULL, 'received', '', '6772.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (618, '2023-11-30 19:39:19', 863, NULL, NULL, 'IPAY2023/11/0612', NULL, 'cash', '', '', '', '', '', '', '24042.3800', NULL, 3, NULL, 'received', '', '24042.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (619, '2023-11-30 20:35:13', 866, NULL, NULL, 'IPAY2023/11/0613', NULL, 'cash', '', '', '', '', '', '', '19075.8800', NULL, 3, NULL, 'received', '', '19075.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (620, '2023-11-30 20:36:22', 867, NULL, NULL, 'IPAY2023/11/0614', NULL, 'cash', '', '', '', '', '', '', '19640.2500', NULL, 3, NULL, 'received', '', '19640.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (621, '2023-11-30 20:38:18', 868, NULL, NULL, 'IPAY2023/11/0615', NULL, 'cash', '', '', '', '', '', '', '43456.8800', NULL, 3, NULL, 'received', '', '43456.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (622, '2023-11-30 20:39:13', 869, NULL, NULL, 'IPAY2023/11/0616', NULL, 'cash', '', '', '', '', '', '', '12867.7500', NULL, 3, NULL, 'received', '', '12867.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (623, '2023-11-30 20:41:43', 870, NULL, NULL, 'IPAY2023/11/0617', NULL, 'cash', '', '', '', '', '', '', '12867.7500', NULL, 3, NULL, 'received', '', '12867.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (624, '2023-11-30 20:52:00', 865, NULL, NULL, 'IPAY2023/11/0618', NULL, 'cash', '', '', '', '', '', 'Visa', '3225.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 (626, '2023-11-30 21:16:44', 872, NULL, NULL, 'IPAY2023/11/0620', NULL, 'cash', '', '', '', '', '', '', '10610.2500', NULL, 3, NULL, 'received', '', '10610.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (627, '2023-11-30 21:21:03', 873, NULL, NULL, 'IPAY2023/11/0621', NULL, 'cash', '', '', '', '', '', '', '29121.7500', NULL, 3, NULL, 'received', '', '29121.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (628, '2023-12-01 12:11:47', 874, NULL, NULL, 'IPAY2023/12/0622', NULL, 'cash', '', '', '', '', '', '', '27315.7500', NULL, 2, NULL, 'received', '', '27315.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (629, '2023-12-01 14:46:18', 876, NULL, NULL, 'IPAY2023/12/0623', NULL, 'cash', '', '', '', '', '', '', '35894.2500', NULL, 2, NULL, 'received', '', '35894.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (630, '2023-12-01 14:46:56', 877, NULL, NULL, 'IPAY2023/12/0624', NULL, 'cash', '', '', '', '', '', '', '18963.0000', NULL, 2, NULL, 'received', '', '18963.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (631, '2023-12-01 15:31:12', 879, NULL, NULL, 'IPAY2023/12/0625', NULL, 'cash', '', '', '', '', '', '', '38038.8800', NULL, 2, NULL, 'received', '', '38038.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (632, '2023-12-01 17:38:32', 880, NULL, NULL, 'IPAY2023/12/0626', NULL, 'cash', '', '', '', '', '', '', '13996.5000', NULL, 2, NULL, 'received', '', '13996.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (633, '2023-12-01 18:36:39', 882, NULL, NULL, 'IPAY2023/12/0627', NULL, 'cash', '', '', '', '', '', '', '34201.1300', NULL, 2, NULL, 'received', '', '34201.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (634, '2023-12-01 19:40:54', 884, NULL, NULL, 'IPAY2023/12/0628', NULL, 'cash', '', '', '', '', '', '', '77996.6300', NULL, 2, NULL, 'received', '', '77996.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (635, '2023-12-01 21:10:52', 885, NULL, NULL, 'IPAY2023/12/0629', NULL, 'cash', '', '', '', '', '', '', '67047.7500', NULL, 2, NULL, 'received', '', '67047.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (636, '2023-12-01 21:13:27', 886, NULL, NULL, 'IPAY2023/12/0630', NULL, 'cash', '', '', '', '', '', '', '79012.5000', NULL, 2, NULL, 'received', '', '79012.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (637, '2023-12-01 21:28:34', 887, NULL, NULL, 'IPAY2023/12/0631', NULL, 'cash', '', '', '', '', '', '', '96508.1300', NULL, 2, NULL, 'received', '', '96508.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (638, '2023-12-01 21:38:27', 888, NULL, NULL, 'IPAY2023/12/0632', NULL, 'cash', '', '', '', '', '', '', '74497.5000', NULL, 2, NULL, 'received', '', '74497.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (639, '2023-12-01 21:47:25', 889, NULL, NULL, 'IPAY2023/12/0633', NULL, 'cash', '', '', '', '', '', '', '4515.0000', NULL, 2, NULL, 'received', '', '4515.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (640, '2023-12-01 22:20:19', 890, NULL, NULL, 'IPAY2023/12/0634', NULL, 'cash', '', '', '', '', '', '', '4515.0000', NULL, 2, NULL, 'received', '', '4515.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (641, '2023-12-02 12:50:31', 892, NULL, NULL, 'IPAY2023/12/0635', NULL, 'cash', '', '', '', '', '', '', '55421.6300', NULL, 2, NULL, 'received', '', '55421.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (642, '2023-12-02 17:24:41', 893, NULL, NULL, 'IPAY2023/12/0636', NULL, 'cash', '', '', '', '', '', '', '54970.1300', NULL, 2, NULL, 'received', '', '54970.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (643, '2023-12-02 18:05:35', 895, NULL, NULL, 'IPAY2023/12/0637', NULL, 'cash', '', '', '', '', '', '', '52374.0000', NULL, 2, NULL, 'received', '', '52374.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (645, '2023-12-02 19:02:55', 898, NULL, NULL, 'IPAY2023/12/0639', NULL, 'cash', '', '', '', '', '', '', '48987.7500', NULL, 2, NULL, 'received', '', '48987.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (646, '2023-12-02 19:52:08', 900, NULL, NULL, 'IPAY2023/12/0640', NULL, 'cash', '', '', '', '', '', '', '10610.2500', NULL, 2, NULL, 'received', '', '10610.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (647, '2023-12-02 20:26:35', 901, NULL, NULL, 'IPAY2023/12/0641', NULL, 'cash', '', '', '', '', '', '', '25735.5000', NULL, 2, NULL, 'received', '', '25735.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (648, '2023-12-02 21:12:38', 902, NULL, NULL, 'IPAY2023/12/0642', NULL, 'cash', '', '', '', '', '', '', '36345.7500', NULL, 2, NULL, 'received', '', '36345.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (649, '2023-12-02 22:38:58', 904, NULL, NULL, 'IPAY2023/12/0643', NULL, 'cash', '', '', '', '', '', '', '85785.0000', NULL, 2, NULL, 'received', '', '85785.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (650, '2023-12-02 22:45:07', 905, NULL, NULL, 'IPAY2023/12/0644', NULL, 'cash', '', '', '', '', '', '', '27428.6300', NULL, 2, NULL, 'received', '', '27428.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (651, '2023-12-03 12:28:06', 908, NULL, NULL, 'IPAY2023/12/0645', NULL, 'cash', '', '', '', '', '', '', '23478.0000', NULL, 2, NULL, 'received', '', '23478.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (652, '2023-12-03 13:20:37', 911, NULL, NULL, 'IPAY2023/12/0646', NULL, 'cash', '', '', '', '', '', '', '41989.5000', NULL, 2, NULL, 'received', '', '41989.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (653, '2023-12-03 13:28:09', 912, NULL, NULL, 'IPAY2023/12/0647', NULL, 'cash', '', '', '', '', '', '', '85559.2500', NULL, 2, NULL, 'received', '', '85559.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (654, '2023-12-03 13:53:07', 913, NULL, NULL, 'IPAY2023/12/0648', NULL, 'cash', '', '', '', '', '', '', '72804.3800', NULL, 2, NULL, 'received', '', '72804.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (655, '2023-12-03 14:58:33', 914, NULL, NULL, 'IPAY2023/12/0649', NULL, 'cash', '', '', '', '', '', '', '32959.5000', NULL, 2, NULL, 'received', '', '32959.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (656, '2023-12-03 16:41:35', 916, NULL, NULL, 'IPAY2023/12/0650', NULL, 'cash', '', '', '', '', '', '', '47068.8800', NULL, 2, NULL, 'received', '', '47068.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (657, '2023-12-03 18:03:49', 918, NULL, NULL, 'IPAY2023/12/0651', NULL, 'cash', '', '', '', '', '', '', '3386.2500', NULL, 2, NULL, 'received', '', '3386.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (658, '2023-12-03 18:05:17', 919, NULL, NULL, 'IPAY2023/12/0652', NULL, 'cash', '', '', '', '', '', '', '3950.6300', NULL, 2, NULL, 'received', '', '3950.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (659, '2023-12-03 19:51:52', 924, NULL, NULL, 'IPAY2023/12/0653', NULL, 'cash', '', '', '', '', '', '', '50680.8800', NULL, 2, NULL, 'received', '', '50680.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (660, '2023-12-03 20:10:20', 925, NULL, NULL, 'IPAY2023/12/0654', NULL, 'cash', '', '', '', '', '', '', '564.3800', NULL, 2, NULL, 'received', '', '564.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (661, '2023-12-03 20:13:20', 926, NULL, NULL, 'IPAY2023/12/0655', NULL, 'cash', '', '', '', '', '', '', '79802.6300', NULL, 2, NULL, 'received', '', '79802.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (662, '2023-12-03 20:14:26', 927, NULL, NULL, 'IPAY2023/12/0656', NULL, 'cash', '', '', '', '', '', '', '8465.6300', NULL, 2, NULL, 'received', '', '8465.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (663, '2023-12-03 20:53:09', 930, NULL, NULL, 'IPAY2023/12/0657', NULL, 'cash', '', '', '', '', '', '', '9481.5000', NULL, 2, NULL, 'received', '', '9481.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (664, '2023-12-03 20:58:09', 931, NULL, NULL, 'IPAY2023/12/0658', NULL, 'cash', '', '', '', '', '', '', '16705.5000', NULL, 2, NULL, 'received', '', '16705.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (665, '2023-12-03 21:11:34', 932, NULL, NULL, 'IPAY2023/12/0659', NULL, 'cash', '', '', '', '', '', '', '97411.1300', NULL, 2, NULL, 'received', '', '97411.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (666, '2023-12-03 21:29:12', 933, NULL, NULL, 'IPAY2023/12/0660', NULL, 'cash', '', '', '', '', '', '', '15125.2500', NULL, 2, NULL, 'received', '', '15125.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (667, '2023-12-03 21:39:35', 934, NULL, NULL, 'IPAY2023/12/0661', NULL, 'cash', '', '', '', '', '', '', '21220.5000', NULL, 2, NULL, 'received', '', '21220.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (668, '2023-12-03 21:44:17', 935, NULL, NULL, 'IPAY2023/12/0662', NULL, 'cash', '', '', '', '', '', '', '43795.5000', NULL, 2, NULL, 'received', '', '43795.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (669, '2023-12-03 21:59:23', 936, NULL, NULL, 'IPAY2023/12/0663', NULL, 'cash', '', '', '', '', '', '', '157122.0000', NULL, 2, NULL, 'received', '', '157122.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (670, '2023-12-03 22:37:09', 938, NULL, NULL, 'IPAY2023/12/0664', NULL, 'cash', '', '', '', '', '', '', '39506.2500', NULL, 2, NULL, 'received', '', '39506.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (671, '2023-12-04 11:47:25', 939, NULL, NULL, 'IPAY2023/12/0665', NULL, 'cash', '', '', '', '', '', '', '36232.8800', NULL, 2, NULL, 'received', '', '36232.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (672, '2023-12-04 12:48:31', 941, NULL, NULL, 'IPAY2023/12/0666', NULL, 'cash', '', '', '', '', '', '', '54857.2500', NULL, 2, NULL, 'received', '', '54857.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (673, '2023-12-04 14:31:07', 943, NULL, NULL, 'IPAY2023/12/0667', NULL, 'cash', '', '', '', '', '', '', '41989.5000', NULL, 2, NULL, 'received', '', '41989.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (674, '2023-12-04 16:52:25', 945, NULL, NULL, 'IPAY2023/12/0668', NULL, 'cash', '', '', '', '', '', '', '6208.1300', NULL, 2, NULL, 'received', '', '6208.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (675, '2023-12-04 18:07:33', 947, NULL, NULL, 'IPAY2023/12/0669', NULL, 'cash', '', '', '', '', '', '', '2821.8800', NULL, 2, NULL, 'received', '', '2821.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (676, '2023-12-04 18:53:32', 949, NULL, NULL, 'IPAY2023/12/0670', NULL, 'cash', '', '', '', '', '', '', '33749.6300', NULL, 2, NULL, 'received', '', '33749.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (677, '2023-12-04 19:24:15', 951, NULL, NULL, 'IPAY2023/12/0671', NULL, 'cash', '', '', '', '', '', '', '15689.6300', NULL, 2, NULL, 'received', '', '15689.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (678, '2023-12-04 20:27:38', 954, NULL, NULL, 'IPAY2023/12/0672', NULL, 'cash', '', '', '', '', '', '', '35442.7500', NULL, 2, NULL, 'received', '', '35442.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (679, '2023-12-04 20:30:31', 955, NULL, NULL, 'IPAY2023/12/0673', NULL, 'cash', '', '', '', '', '', '', '13996.5000', NULL, 2, NULL, 'received', '', '13996.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (680, '2023-12-04 20:33:17', 956, NULL, NULL, 'IPAY2023/12/0674', NULL, 'cash', '', '', '', '', '', '', '6208.1300', NULL, 2, NULL, 'received', '', '6208.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (681, '2023-12-04 21:56:41', 957, NULL, NULL, 'IPAY2023/12/0675', NULL, 'cash', '', '', '', '', '', '', '4515.0000', NULL, 2, NULL, 'received', '', '4515.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (682, '2023-12-05 13:21:01', 960, NULL, NULL, 'IPAY2023/12/0676', NULL, 'cash', '', '', '', '', '', '', '153510.0000', NULL, 2, NULL, 'received', '', '153510.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (683, '2023-12-05 13:42:53', 961, NULL, NULL, 'IPAY2023/12/0677', NULL, 'cash', '', '', '', '', '', '', '48084.7500', NULL, 2, NULL, 'received', '', '48084.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (684, '2023-12-05 15:37:49', 962, NULL, NULL, 'IPAY2023/12/0678', NULL, 'cash', '', '', '', '', '', '', '37474.5000', NULL, 2, NULL, 'received', '', '37474.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (685, '2023-12-05 18:49:20', 964, NULL, NULL, 'IPAY2023/12/0679', NULL, 'cash', '', '', '', '', '', '', '50003.6300', NULL, 2, NULL, 'received', '', '50003.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (686, '2023-12-05 18:50:30', 965, NULL, NULL, 'IPAY2023/12/0680', NULL, 'cash', '', '', '', '', '', '', '10045.8800', NULL, 2, NULL, 'received', '', '10045.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (687, '2023-12-05 21:15:00', 969, NULL, NULL, 'IPAY2023/12/0681', NULL, 'cash', '', '', '', '', '', '', '4853.6300', NULL, 2, NULL, 'received', '', '4853.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (688, '2023-12-05 21:51:32', 970, NULL, NULL, 'IPAY2023/12/0682', NULL, 'cash', '', '', '', '', '', '', '564.3800', NULL, 2, NULL, 'received', '', '564.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (689, '2023-12-05 22:47:16', 972, NULL, NULL, 'IPAY2023/12/0683', NULL, 'cash', '', '', '', '', '', '', '13432.1300', NULL, 2, NULL, 'received', '', '13432.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (691, '2023-12-05 22:58:46', 974, NULL, NULL, 'IPAY2023/12/0685', NULL, 'cash', '', '', '', '', '', '', '9707.2500', NULL, 2, NULL, 'received', '', '9707.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (692, '2023-12-05 22:59:52', 975, NULL, NULL, 'IPAY2023/12/0686', NULL, 'cash', '', '', '', '', '', '', '2257.5000', NULL, 2, NULL, 'received', '', '2257.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (693, '2023-12-06 13:30:16', 977, NULL, NULL, 'IPAY2023/12/0687', NULL, 'cash', '', '', '', '', '', '', '38603.2500', NULL, 2, NULL, 'received', '', '38603.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (694, '2023-12-06 13:49:38', 978, NULL, NULL, 'IPAY2023/12/0688', NULL, 'cash', '', '', '', '', '', '', '22349.2500', NULL, 2, NULL, 'received', '', '22349.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (695, '2023-12-06 16:44:03', 980, NULL, NULL, 'IPAY2023/12/0689', NULL, 'cash', '', '', '', '', '', '', '11739.0000', NULL, 2, NULL, 'received', '', '11739.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (696, '2023-12-06 18:32:45', 982, NULL, NULL, 'IPAY2023/12/0690', NULL, 'cash', '', '', '', '', '', '', '10610.2500', NULL, 2, NULL, 'received', '', '10610.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (699, '2023-12-06 23:18:39', 987, NULL, NULL, 'IPAY2023/12/0693', NULL, 'cash', '', '', '', '', '', '', '31717.8800', NULL, 3, NULL, 'received', '', '31717.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (700, '2023-12-07 12:42:04', 989, NULL, NULL, 'IPAY2023/12/0694', NULL, 'cash', '', '', '', '', '', '', '162088.5000', NULL, 3, NULL, 'received', '', '162088.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (701, '2023-12-07 12:46:04', 990, NULL, NULL, 'IPAY2023/12/0695', NULL, 'cash', '', '', '', '', '', '', '72691.5000', NULL, 3, NULL, 'received', '', '72691.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (702, '2023-12-07 13:07:18', 991, NULL, NULL, 'IPAY2023/12/0696', NULL, 'cash', '', '', '', '', '', '', '117164.2500', NULL, 3, NULL, 'received', '', '117164.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (703, '2023-12-07 13:08:45', 992, NULL, NULL, 'IPAY2023/12/0697', NULL, 'cash', '', '', '', '', '', '', '3386.2500', NULL, 3, NULL, 'received', '', '3386.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (704, '2023-12-07 17:25:19', 994, NULL, NULL, 'IPAY2023/12/0698', NULL, 'cash', '', '', '', '', '', '', '15922.6200', NULL, 3, NULL, 'received', '', '15922.6200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (705, '2023-12-07 20:33:16', 998, NULL, NULL, 'IPAY2023/12/0699', NULL, 'cash', '', '', '', '', '', '', '48966.3100', NULL, 1, NULL, 'received', '', '48966.3100', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (706, '2023-12-07 20:34:55', 999, NULL, NULL, 'IPAY2023/12/0700', NULL, 'cash', '', '', '', '', '', '', '22029.8200', NULL, 1, NULL, 'received', '', '22029.8200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (707, '2023-12-07 21:16:44', 1001, NULL, NULL, 'IPAY2023/12/0701', NULL, 'cash', '', '', '', '', '', '', '24533.3900', NULL, 1, NULL, 'received', '', '24533.3900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (708, '2023-12-07 21:24:26', 1003, NULL, NULL, 'IPAY2023/12/0702', NULL, 'cash', '', '', '', '', '', '', '1128.7500', NULL, 1, NULL, 'received', '', '1128.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (709, '2023-12-07 21:46:47', 1005, NULL, NULL, 'IPAY2023/12/0703', NULL, 'cash', '', '', '', '', '', '', '44960.3700', NULL, 1, NULL, 'received', '', '44960.3700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (710, '2023-12-07 22:20:48', 1007, NULL, NULL, 'IPAY2023/12/0704', NULL, 'cash', '', '', '', '', '', '', '16366.8800', NULL, 3, NULL, 'received', '', '16366.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (715, '2023-12-08 14:19:49', 1017, NULL, NULL, 'IPAY2023/12/0709', NULL, 'cash', '', '', '', '', '', '', '35217.0000', NULL, 31, NULL, 'received', '', '35217.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (716, '2023-12-08 20:36:08', 1019, NULL, NULL, 'IPAY2023/12/0710', NULL, 'cash', '', '', '', '', '', '', '11739.0000', NULL, 31, NULL, 'received', '', '11739.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (717, '2023-12-08 21:06:53', 1022, NULL, NULL, 'IPAY2023/12/0711', NULL, 'cash', '', '', '', '', '', '', '35781.3800', NULL, 31, NULL, 'received', '', '35781.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (719, '2023-12-08 22:00:27', 1020, NULL, NULL, 'IPAY2023/12/0713', NULL, 'cash', '', '', '', '', '', 'Visa', '39844.8800', NULL, 31, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (720, '2023-12-08 22:55:31', 1026, NULL, NULL, 'IPAY2023/12/0714', NULL, 'cash', '', '', '', '', '', 'Visa', '12867.7500', NULL, 31, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (721, '2023-12-08 23:05:32', 1027, NULL, NULL, 'IPAY2023/12/0715', NULL, 'cash', '', '', '', '', '', '', '29686.1300', NULL, 31, NULL, 'received', '', '29686.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (723, '2023-12-08 23:18:52', 1028, NULL, NULL, 'IPAY2023/12/0717', NULL, 'cash', '', '', '', '', '', '', '7901.2500', NULL, 31, NULL, 'received', '', '7901.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (724, '2023-12-08 23:26:56', 1018, NULL, NULL, 'IPAY2023/12/0718', NULL, 'cash', '', '', '', '', '', 'Visa', '70659.7500', NULL, 31, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (725, '2023-12-08 23:27:24', 1024, NULL, NULL, 'IPAY2023/12/0719', NULL, 'cash', '', '', '', '', '', 'Visa', '164458.8800', NULL, 31, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (726, '2023-12-09 12:17:01', 1029, NULL, NULL, 'IPAY2023/12/0720', NULL, 'cash', '', '', '', '', '', 'Visa', '1128.7500', NULL, 31, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (727, '2023-12-09 14:58:02', 1030, NULL, NULL, 'IPAY2023/12/0721', NULL, 'cash', '', '', '', '', '', 'Visa', '34088.2500', NULL, 31, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (728, '2023-12-09 15:12:58', 1032, NULL, NULL, 'IPAY2023/12/0722', NULL, 'cash', '', '', '', '', '', 'Visa', '39167.6300', NULL, 31, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (729, '2023-12-09 15:33:17', 1033, NULL, NULL, 'IPAY2023/12/0723', NULL, 'cash', '', '', '', '', '', 'Visa', '6772.5000', NULL, 31, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (730, '2023-12-09 16:26:14', 1034, NULL, NULL, 'IPAY2023/12/0724', NULL, 'cash', '', '', '', '', '', '', '8465.6300', NULL, 31, NULL, 'received', '', '8465.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (731, '2023-12-09 18:02:08', 1035, NULL, NULL, 'IPAY2023/12/0725', NULL, 'cash', '', '', '', '', '', 'Visa', '564.3800', NULL, 31, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (732, '2023-12-09 19:18:32', 1038, NULL, NULL, 'IPAY2023/12/0726', NULL, 'cash', '', '', '', '', '', '', '29573.2500', NULL, 31, NULL, 'received', '', '29573.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (733, '2023-12-09 19:33:17', 1036, NULL, NULL, 'IPAY2023/12/0727', NULL, 'cash', '', '', '', '', '', 'Visa', '44811.3800', NULL, 31, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (734, '2023-12-09 20:14:22', 1041, NULL, NULL, 'IPAY2023/12/0728', NULL, 'cash', '', '', '', '', '', '', '25622.6300', NULL, 31, NULL, 'received', '', '25622.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (735, '2023-12-09 20:57:51', 1042, NULL, NULL, 'IPAY2023/12/0729', NULL, 'cash', '', '', '', '', '', '', '50003.6300', NULL, 31, NULL, 'received', '', '50003.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (736, '2023-12-09 21:07:27', 1044, NULL, NULL, 'IPAY2023/12/0730', NULL, 'cash', '', '', '', '', '', '', '33636.7500', NULL, 31, NULL, 'received', '', '33636.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (741, '2023-12-09 22:03:04', 1048, NULL, NULL, 'IPAY2023/12/0735', NULL, 'cash', '', '', '', '', '', '', '19075.8800', NULL, 31, NULL, 'received', '', '19075.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (744, '2023-12-09 23:06:30', 1049, NULL, NULL, 'IPAY2023/12/0738', NULL, 'cash', '', '', '', '', '', '', '36458.6300', NULL, 3, NULL, 'received', '', '36458.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (746, '2023-12-10 13:22:00', 1052, NULL, NULL, 'IPAY2023/12/0740', NULL, 'cash', '', '', '', '', '', '', '120161.0900', NULL, 3, NULL, 'received', '', '120161.0900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (747, '2023-12-10 13:26:12', 1053, NULL, NULL, 'IPAY2023/12/0741', NULL, 'cash', '', '', '', '', '', '', '9412.6400', NULL, 3, NULL, 'received', '', '9412.6400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (748, '2023-12-10 13:46:24', 1054, NULL, NULL, 'IPAY2023/12/0742', NULL, 'cash', '', '', '', '', '', '', '25735.5000', NULL, 3, NULL, 'received', '', '25735.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (749, '2023-12-10 14:36:00', 1053, NULL, NULL, 'IPAY2023/12/0743', NULL, 'CC', '', '', '', '', '', 'Visa', '0.0100', 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 (750, '2023-12-10 15:35:50', 1056, NULL, NULL, 'IPAY2023/12/0744', NULL, 'cash', '', '', '', '', '', '', '30241.4700', NULL, 3, NULL, 'received', '', '30241.4700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (751, '2023-12-10 17:11:09', 1058, NULL, NULL, 'IPAY2023/12/0745', NULL, 'cash', '', '', '', '', '', '', '44760.5900', NULL, 3, NULL, 'received', '', '44760.5900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (753, '2023-12-10 17:37:40', 1060, NULL, NULL, 'IPAY2023/12/0747', NULL, 'cash', '', '', '', '', '', '', '2003.5400', NULL, 3, NULL, 'received', '', '2003.5400', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (754, '2023-12-10 19:59:09', 1063, NULL, NULL, 'IPAY2023/12/0748', NULL, 'cash', '', '', '', '', '', '', '21331.1200', NULL, 3, NULL, 'received', '', '21331.1200', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (755, '2023-12-10 20:03:13', 1064, NULL, NULL, 'IPAY2023/12/0749', NULL, 'cash', '', '', '', '', '', '', '26436.4600', NULL, 3, NULL, 'received', '', '26436.4600', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (756, '2023-12-10 21:08:32', 1065, NULL, NULL, 'IPAY2023/12/0750', NULL, 'cash', '', '', '', '', '', '', '4515.0000', NULL, 3, NULL, 'received', '', '4515.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (757, '2023-12-10 22:17:09', 1068, NULL, NULL, 'IPAY2023/12/0751', NULL, 'cash', '', '', '', '', '', '', '24533.3900', NULL, 3, NULL, 'received', '', '24533.3900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (758, '2023-12-10 22:24:36', 1069, NULL, NULL, 'IPAY2023/12/0752', NULL, 'cash', '', '', '', '', '', '', '31041.7500', NULL, 3, NULL, 'received', '', '31041.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (759, '2023-12-10 22:39:11', 1070, NULL, NULL, 'IPAY2023/12/0753', NULL, 'cash', '', '', '', '', '', '', '15821.6900', NULL, 3, NULL, 'received', '', '15821.6900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (760, '2023-12-10 22:41:00', 1069, NULL, NULL, 'IPAY2023/12/0754', NULL, 'CC', '', '', '', '', '', 'Visa', '0.0100', 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 (761, '2023-12-11 12:22:37', 1072, NULL, NULL, 'IPAY2023/12/0755', NULL, 'cash', '', '', '', '', '', '', '73368.7500', NULL, 31, NULL, 'received', '', '73368.7500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (764, '2023-12-11 13:13:42', 1074, NULL, NULL, 'IPAY2023/12/0758', NULL, 'cash', '', '', '', '', '', '', '49777.8800', NULL, 31, NULL, 'received', '', '49777.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (766, '2023-12-11 18:32:27', 1077, NULL, NULL, 'IPAY2023/12/0760', NULL, 'cash', '', '', '', '', '', '', '46956.0000', NULL, 31, NULL, 'received', '', '46956.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (767, '2023-12-11 19:20:19', 1079, NULL, NULL, 'IPAY2023/12/0761', NULL, 'cash', '', '', '', '', '', '', '11287.5000', NULL, 31, NULL, 'received', '', '11287.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (768, '2023-12-11 19:38:45', 1080, NULL, NULL, 'IPAY2023/12/0762', NULL, 'cash', '', '', '', '', '', '', '10610.2500', NULL, 31, NULL, 'received', '', '10610.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (769, '2023-12-11 20:01:34', 1081, NULL, NULL, 'IPAY2023/12/0763', NULL, 'cash', '', '', '', '', '', '', '15322.7900', NULL, 3, NULL, 'received', '', '15322.7900', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (770, '2023-12-11 20:09:23', 1083, NULL, NULL, 'IPAY2023/12/0764', NULL, 'cash', '', '', '', '', '', '', '7336.8800', NULL, 31, NULL, 'received', '', '7336.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (772, '2023-12-11 20:47:04', 1086, NULL, NULL, 'IPAY2023/12/0766', NULL, 'cash', '', '', '', '', '', '', '1693.1300', NULL, 31, NULL, 'received', '', '1693.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (774, '2023-12-11 21:18:40', 1088, NULL, NULL, 'IPAY2023/12/0768', NULL, 'cash', '', '', '', '', '', '', '38038.8800', NULL, 31, NULL, 'received', '', '38038.8800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (776, '2023-12-11 22:33:22', 1092, NULL, NULL, 'IPAY2023/12/0770', NULL, 'cash', '', '', '', '', '', '', '41425.1300', NULL, 31, NULL, 'received', '', '41425.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (778, '2023-12-11 23:00:06', 1094, NULL, NULL, 'IPAY2023/12/0772', NULL, 'cash', '', '', '', '', '', '', '42215.2500', NULL, 31, NULL, 'received', '', '42215.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (779, '2023-12-11 23:33:12', 1095, NULL, NULL, 'IPAY2023/12/0773', NULL, 'cash', '', '', '', '', '', '', '40635.0000', NULL, 31, NULL, 'received', '', '40635.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (780, '2023-12-11 23:42:59', 1096, NULL, NULL, 'IPAY2023/12/0774', NULL, 'cash', '', '', '', '', '', '', '2257.5000', NULL, 31, NULL, 'received', '', '2257.5000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (781, '2023-12-12 13:14:48', 1098, NULL, NULL, 'IPAY2023/12/0775', NULL, 'cash', '', '', '', '', '', '', '52938.3800', NULL, 31, NULL, 'received', '', '52938.3800', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (782, '2023-12-12 14:59:14', 1100, NULL, NULL, 'IPAY2023/12/0776', NULL, 'cash', '', '', '', '', '', '', '32508.0000', NULL, 31, NULL, 'received', '', '32508.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (783, '2023-12-12 16:57:08', 1102, NULL, NULL, 'IPAY2023/12/0777', NULL, 'cash', '', '', '', '', '', '', '45940.1300', NULL, 31, NULL, 'received', '', '45940.1300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (784, '2023-12-12 18:08:16', 1104, NULL, NULL, 'IPAY2023/12/0778', NULL, 'cash', '', '', '', '', '', '', '38603.2500', NULL, 31, NULL, 'received', '', '38603.2500', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (785, '2023-12-12 21:12:26', 1106, NULL, NULL, 'IPAY2023/12/0779', NULL, 'cash', '', '', '', '', '', '', '22913.6300', NULL, 31, NULL, 'received', '', '22913.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (787, '2023-12-12 22:08:50', 1110, NULL, NULL, 'IPAY2023/12/0781', NULL, 'cash', '', '', '', '', '', '', '32443.6700', NULL, 3, NULL, 'received', '', '32443.6700', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (788, '2023-12-12 22:09:33', 1111, NULL, NULL, 'IPAY2023/12/0782', NULL, 'cash', '', '', '', '', '', '', '3047.6300', NULL, 3, NULL, 'received', '', '3047.6300', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (791, '2023-12-12 22:55:02', 1114, NULL, NULL, 'IPAY2023/12/0785', NULL, 'cash', '', '', '', '', '', '', '46362.2800', NULL, 3, NULL, 'received', '', '46362.2800', '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=utf8mb3 COLLATE=utf8mb3_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=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, 1, 1, NULL, 1, 1, 1, 1, 1, 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, 1, NULL, 0, 0, NULL, NULL, NULL, 1, 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 (2, 6, 1, 1, NULL, NULL, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 1, 1, NULL, NULL, NULL, NULL, 1, 1, NULL, 1, NULL, 1, NULL, NULL, NULL, NULL, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, NULL, NULL, 1, 0, 1, 1, 0, 0, 1, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, 1, 1, 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=13 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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, '2023-10-15 18:01:41', 1, '5000.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (2, '2023-10-15 18:22:49', 2, '2000.0000', 'close', '24500.0000', 0, 0, '24500.0000', 0, 0, '', '2023-10-15 18:40:35', '0', 2);
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, '2023-10-15 18:40:57', 2, '5000.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (4, '2023-10-19 16:21:02', 5, '100.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (5, '2023-10-19 16:24:24', 7, '100.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (6, '2023-10-19 16:46:56', 6, '100.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, '2023-10-29 17:39:37', 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 (8, '2023-10-29 17:58:06', 8, '0.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (9, '2023-10-31 20:11:11', 9, '0.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (10, '2023-11-01 19:08:16', 11, '0.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (11, '2023-11-04 18:04:22', 10, '0.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (12, '2023-12-08 11:22:26', 31, '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=utf8mb3 COLLATE=utf8mb3_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, 50, 1, 1, 3, '1', '', '', '', '', NULL, 'x1C', 'Ctrl+F3', 'Ctrl+Shift+M', 'Ctrl+Shift+C', 'Ctrl+Shift+A', 'Ctrl+F11', 'Ctrl+F12', 'F4', 'F7', 'F9', 'F8', 'Ctrl+F1', 'Ctrl+F2', 'Ctrl+F10', 1, NULL, 0, 'default', 1, 0, 0, 0, 42, NULL, 'purchase_code', 'envato_username', '3.4.47', 0, 0, 0, '', 1, NULL, 'null', 0, 0, 1);


#
# TABLE STRUCTURE FOR: sma_price_groups
#

DROP TABLE IF EXISTS `sma_price_groups`;

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

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


#
# 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=utf8mb3 COLLATE=utf8mb3_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=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_product_photos` (`id`, `product_id`, `photo`) VALUES (1, 856, '1ac39bac30e838cc69b5c37b6598fe3f.png');
INSERT INTO `sma_product_photos` (`id`, `product_id`, `photo`) VALUES (2, 856, '8623283c70644f951add635bc3b6cbd9.png');
INSERT INTO `sma_product_photos` (`id`, `product_id`, `photo`) VALUES (3, 856, 'a2ba5e72ad110396fac51ae194dcf519.png');


#
# 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=utf8mb3 COLLATE=utf8mb3_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 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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=1160 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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 (856, '1', 'Chicken Biryani', 1, '8900.0000', '8900.0000', '0.0000', '8636ba83bb39673eeb3e425e710a8ef8.png', 1, NULL, '', '', '', '', '', '', '-63.0000', 3, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chicken-biryani', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (857, '2', 'Lamb Biryani', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-11.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lamb-biryani', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (858, '3', 'Steamed rice topped with chicken', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-44.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'steamed-rice-topped-with-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (859, '4a', 'Fried rice with chicken', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-57.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fried-rice-with-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (860, '4b', 'Fried rice with shrimps', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-61.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fried-rice-with-shrimps', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (861, '4c', 'Fried rice with seafood', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-25.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fried-rice-with-seafood', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (862, '4d', 'Fried rice with beef', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fried-rice-with-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (863, '4e', 'Fried rice mixed', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-24.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fried-rice-mixed', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (864, '5', 'Tom yum fried rice', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-13.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tom-yum-fried-rice', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (865, '6', 'Rice', 1, '1500.0000', '1500.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-103.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rice', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (866, '7', 'Sticky rice', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-98.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sticky-rice', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (867, '8a', 'Pad Thai (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-43.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pad-thai-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (868, '8b', 'Pad Thai (shrimp)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-32.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pad-thai-shrimp', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (869, '8c', 'Pad Thai (seafood)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-7.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pad-thai-seafood', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (870, '8d', 'Pad Thai (beef)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pad-thai-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (871, '8e', 'Pad Thai (mixed)', 1, '10400.0000', '10400.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pad-thai-mixed', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-15.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-noodle-with-soy-sauce-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (873, '9b', 'Stir-fried noodle with soy sauce (shrimp)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-noodle-with-soy-sauce-shrimp', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (874, '9c', 'Stir-fried noodle with soy sauce (seafood)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-noodle-with-soy-sauce-seafood', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (875, '9d', 'Stir-fried noodle with soy sauce (mixed)', 1, '10400.0000', '10400.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-noodle-with-soy-sauce-mixed', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (876, '10a', 'Stir-fried glass noodles (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-glass-noodles-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (877, '10b', 'Stir-fried glass noodles (seafood)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-5.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-glass-noodles-seafood', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (878, '10c', 'Stir-fried glass noodles (beef)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-glass-noodles-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (879, '10d', 'Stir-fried glass noodles (mixed)', 1, '10400.0000', '10400.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-glass-noodles-mixed', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (880, '11a', 'Noodles in gravy sauce (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'noodles-in-gravy-sauce-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (881, '11b', 'Noodles in gravy sauce (shrimp)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'noodles-in-gravy-sauce-shrimp', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (882, '11c', 'Noodles in gravy sauce (seafood)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-12.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'noodles-in-gravy-sauce-seafood', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (883, '11d', 'Noodles in gravy sauce (mixed)', 1, '10400.0000', '10400.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'noodles-in-gravy-sauce-mixed', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (884, '12', 'Baked shrimp with glass noodles', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-24.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'baked-shrimp-with-glass-noodles', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (885, '13', 'Chicken northern style curry noodles', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-19.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chicken-northern-style-curry-noodles', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (886, '14', 'Rice noodles with fish curry', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rice-noodles-with-fish-curry', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (887, '14b', 'Rice noodles with coconut milk curry', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-8.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rice-noodles-with-coconut-milk-curry', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (888, '14c', 'Rice noodles with northern curry', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rice-noodles-with-northern-curry', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (889, '15a', 'Noodles (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-6.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'noodles-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (890, '15b', 'Noodles (beef)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-22.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'noodles-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (891, '15c', 'Noodles (Tom Yum)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'noodles-tom-yum', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (892, '16', 'Noodles in red tofu clear soup', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-27.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'noodles-in-red-tofu-clear-soup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (893, '17a', 'Green curry (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-15.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'green-curry-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (894, '17b', 'Green curry (beef)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'green-curry-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (895, '17c', 'Green curry (shrimp)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'green-curry-shrimp', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (896, '17d', 'Green curry (mixed)', 1, '10400.0000', '10400.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'green-curry-mixed', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (897, '18a', 'Red curry (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-5.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'red-curry-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (898, '18b', 'Red curry (beef)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'red-curry-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (899, '18c', 'Red curry (shrimp)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'red-curry-shrimp', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (900, '18d', 'Red curry (mixed)', 1, '10400.0000', '10400.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'red-curry-mixed', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (901, '19a', 'Panang curry (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-8.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'panang-curry-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (902, '19b', 'Panang curry (beef)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'panang-curry-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (903, '19c', 'Panang curry (shrimp)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'panang-curry-shrimp', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (904, '19d', 'Panang curry (mixed)', 1, '10400.0000', '10400.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'panang-curry-mixed', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (905, '20', 'Chicken leg curry', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chicken-leg-curry', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (906, '21a', 'Massaman Curry (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-5.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'massaman-curry-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (907, '21b', 'Massaman Curry (beef)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'massaman-curry-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (908, '21c', 'Massaman Curry (lamb)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-8.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'massaman-curry-lamb', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (909, '22', 'Sour soup with fish', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sour-soup-with-fish', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (910, '23', 'Chicken, tofu and seaweed in clear soup', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chicken-tofu-and-seaweed-in-clear-soup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (911, '24', 'Tom Yum (shrimp/clear soup)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-13.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tom-yum-shrimpclear-soup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (912, '24b', 'Tom Yum (shrimp/creamy soup)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-18.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tom-yum-shrimpcreamy-soup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (913, '24c', 'Tom Yum (seafood/clear soup)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-9.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tom-yum-seafoodclear-soup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (914, '24d', 'Tom Yum (seafood/creamy soup)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-13.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tom-yum-seafoodcreamy-soup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (915, '25', 'Boiled chicken in fish sauce', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-17.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'boiled-chicken-in-fish-sauce', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (916, '26', 'Stewed eggs', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stewed-eggs', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (917, '27a', 'Stir-fried with holy basil (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '-16.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-with-holy-basil-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (918, '27b', 'Stir-fried with holy basil (shrimp)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '-44.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-with-holy-basil-shrimp', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (919, '27c', 'Stir-fried with holy basil (beef)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '-12.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-with-holy-basil-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (920, '27d', 'Stir-fried with holy basil (mixed meat)', 1, '10400.0000', '10400.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-with-holy-basil-mixed-meat', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (921, '28a', 'Stir-fried with bell peppers (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-with-bell-peppers-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (922, '28b', 'Stir-fried with bell peppers (shrimp)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-with-bell-peppers-shrimp', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (923, '28c', 'Stir-fried with bell peppers (beef)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-with-bell-peppers-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (924, '28d', 'Stir-fried with bell peppers (mixed meat)', 1, '10400.0000', '10400.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-with-bell-peppers-mixed-meat', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (925, '29', 'Stir-fried chicken with ginger', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-chicken-with-ginger', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (926, '30', 'Stir-fried mixed vegetables', 1, '6900.0000', '6900.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '-25.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-mixed-vegetables', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (927, '30b', 'Stir-fried shrimp mixed vegetables', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-shrimp-mixed-vegetables', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (928, '30c', 'Stir-fried beef mixed vegetables', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-beef-mixed-vegetables', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (929, '31', 'Sweet and sour stir fry', 1, '6900.0000', '6900.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sweet-and-sour-stir-fry', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (930, '32', 'Fried boiled egg with tamarind sauce', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fried-boiled-egg-with-tamarind-sauce', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (931, '33', 'Stir-fried crab with curry powder', 1, '10200.0000', '10200.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '-13.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stir-fried-crab-with-curry-powder', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (932, '34', 'Spicy glass noodles salad', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '-29.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spicy-glass-noodles-salad', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (933, '35', 'Spicy papaya salad (Thai style)', 1, '6900.0000', '6900.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '-30.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spicy-papaya-salad-thai-style', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (934, '35b', 'Spicy papaya salad (fermented fish)', 1, '6900.0000', '6900.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spicy-papaya-salad-fermented-fish', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (935, '35c', 'Spicy papaya salad (mixed ingrediets)', 1, '6900.0000', '6900.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '-18.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spicy-papaya-salad-mixed-ingrediets', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (936, '36', 'Spicy mixed seafood salad', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '-32.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spicy-mixed-seafood-salad', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (937, '37a', 'Spicy minced (beef)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '-17.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spicy-minced-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (938, '37b', 'Spicy minced (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '-6.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spicy-minced-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (939, '37c', 'Spicy chopped meat salad (chicken)', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spicy-chopped-meat-salad-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (940, '37d', 'Spicy chopped meat salad (beef)', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spicy-chopped-meat-salad-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (941, '38a', 'Fried spring rolls (stuffed with chicken)', 1, '4500.0000', '4500.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-27.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fried-spring-rolls-stuffed-with-chicken', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (942, '38b', 'Fried spring rolls (stuffed with shrimp)', 1, '5500.0000', '5500.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-26.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fried-spring-rolls-stuffed-with-shrimp', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (943, '38c', 'Fried spring rolls (stuffed with vegetables)', 1, '4500.0000', '4500.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-12.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fried-spring-rolls-stuffed-with-vegetables', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (944, '38d', 'Fried spring rolls (stuffed with cheese)', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fried-spring-rolls-stuffed-with-cheese', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (945, '39', 'Hat Yai-style fried chicken', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-19.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hat-yai-style-fried-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (946, '40', 'Fried shrimp', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-28.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fried-shrimp', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (947, '41', 'Fried squid', 1, '6900.0000', '6900.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-6.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fried-squid', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (948, '42', 'Fried chicken wings', 1, '6900.0000', '6900.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-50.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fried-chicken-wings', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (949, '43', 'Sun-dried beef', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-28.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sun-dried-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (950, '44', 'Deep fried chicken rolls (8 pcs)', 1, '6900.0000', '6900.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-22.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'deep-fried-chicken-rolls-8-pcs', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (951, '45', 'Red grilled chicken', 1, '7900.0000', '7900.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'red-grilled-chicken', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (952, '46', 'Fried fish with three flavors sauce', 1, '20000.0000', '20000.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-5.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fried-fish-with-three-flavors-sauce', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (953, '47', 'Fried fish with chili sauce', 1, '20000.0000', '20000.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-40.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fried-fish-with-chili-sauce', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (954, '48', 'Beef hot pan', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 7, NULL, '', '', '', '', '', '', '-6.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'beef-hot-pan', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (955, '49', 'Seafood hot pan', 1, '10900.0000', '10900.0000', '0.0000', 'no_image.png', 7, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'seafood-hot-pan', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (956, '50', 'Mixed set (large)', 1, '15000.0000', '15000.0000', '0.0000', 'no_image.png', 7, NULL, '', '', '', '', '', '', '-39.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mixed-set-large', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (957, '50b', 'Mixed set (small)', 1, '10000.0000', '10000.0000', '0.0000', 'no_image.png', 7, NULL, '', '', '', '', '', '', '-11.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mixed-set-small', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (958, '51', 'Pandan custard bread', 1, '5500.0000', '5500.0000', '0.0000', 'no_image.png', 8, NULL, '', '', '', '', '', '', '-5.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pandan-custard-bread', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (959, '52', 'Sago pearls', 1, '4500.0000', '4500.0000', '0.0000', 'no_image.png', 8, NULL, '', '', '', '', '', '', '-21.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sago-pearls', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (960, '53', 'Glutinous rice balls', 1, '4500.0000', '4500.0000', '0.0000', 'no_image.png', 8, NULL, '', '', '', '', '', '', '-31.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glutinous-rice-balls', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (961, '54', 'Crispy red ruby', 1, '4500.0000', '4500.0000', '0.0000', 'no_image.png', 8, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'crispy-red-ruby', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (962, '55', 'Cendol in coconut milk', 1, '4500.0000', '4500.0000', '0.0000', 'no_image.png', 8, NULL, '', '', '', '', '', '', '-7.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cendol-in-coconut-milk', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (963, '56', 'Bacardi White', 1, '12600.0000', '12600.0000', '0.0000', '15b4a23da1110126436667b7100898df.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bacardi-white', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (964, '56b', 'Bacardi White (shot)', 1, '1500.0000', '1500.0000', '0.0000', '5e6d6fde2fc8ab5046ea40fc9911a1cb.png', 9, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bacardi-white-shot', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (965, '57', 'Absolute Vodka', 1, '15000.0000', '15000.0000', '0.0000', '4429d6011f06dd4d88aa0b00e32ef55d.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'absolute-vodka', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (966, '57b', 'Absolute Vodka (shot)', 1, '1800.0000', '1800.0000', '0.0000', '95a71fb6d67d4ae8d708d361703a5996.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'absolute-vodka-shot', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (967, '58', 'Sky vodka', 1, '15200.0000', '15200.0000', '0.0000', 'a87576393393f87c0fb5322e68a97433.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sky-vodka', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (968, '58b', 'Sky vodka (shot)', 1, '1800.0000', '1800.0000', '0.0000', '4d866419a1cd99a2a0d19b5973d007c5.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sky-vodka-shot', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (969, '59', 'Flirt Vodka', 1, '10000.0000', '10000.0000', '0.0000', '8d8d4f18e032f28c4a9679007fd0bac4.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'flirt-vodka', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (970, '59b', 'Flirt Vodka (shot)', 1, '1800.0000', '1800.0000', '0.0000', 'faf105918ca650876fe7d1b7d7832905.jpg', 9, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'flirt-vodka-shot', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (971, '60', 'Pascas', 1, '10000.0000', '10000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pascas', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (972, '61', 'Smirnoff X1', 1, '6500.0000', '6500.0000', '0.0000', 'b78a102c0f4e9d856a54af8e8dbce511.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'smirnoff-x1', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (973, '61b', 'Smirnoff X1 (shot)', 1, '1800.0000', '1800.0000', '0.0000', '8fe2e122e49e667f7c355c2f5361a827.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'smirnoff-x1-shot', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (974, '62', 'Smirnoff X1 (small)', 1, '3000.0000', '3000.0000', '0.0000', '3c90d456ad4b6ff854e3fda73ae5b5c3.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'smirnoff-x1-small', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (975, '63', 'Jameson Irish Whisky', 1, '32500.0000', '32500.0000', '0.0000', '5df5feff51c6221962c711e53cbefac7.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jameson-irish-whisky', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (976, '64', 'Jameson 1780', 1, '99000.0000', '99000.0000', '0.0000', '0c3ae4e9b1e784f31f0b496239132925.jpg', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jameson-1780', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (977, '65', 'William Lawson', 1, '9900.0000', '9900.0000', '0.0000', 'ad3cbe6e88457f4ce6be35a5780fa8a8.jpg', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'william-lawson', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (978, '66', 'Jack Williams', 1, '10000.0000', '10000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jack-williams', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (979, '67', 'Teeling Whisky', 1, '25500.0000', '25500.0000', '0.0000', 'b161fc95189f67ed9736befa1fc6dee8.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'teeling-whisky', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (980, '68', 'Black Label', 1, '27000.0000', '27000.0000', '0.0000', '4503c7f4fc3720e7c234792fcd71a35f.jpg', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'black-label', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (981, '68b', 'Black Label (shot)', 1, '1800.0000', '1800.0000', '0.0000', 'c50e449e627e2b55b710d97035583e81.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'black-label-shot', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (982, '69', 'Red Label', 1, '12000.0000', '12000.0000', '0.0000', '18eeebcc14e17aebae350bb05e8c4e73.png', 9, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'red-label', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (983, '69b', 'Red Label (shot)', 1, '1800.0000', '1800.0000', '0.0000', '16a8d3d7e041114dfd70efb87124bcfb.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'red-label-shot', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (984, '70', 'Jack Daniels', 1, '20000.0000', '20000.0000', '0.0000', '84b9214b7a7ce17bc1fd313073900292.jpg', 9, NULL, '', '', '', '', '', '', NULL, 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jack-daniels', 1, '0.0000', NULL, 12, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (985, '70b', 'Jack Daniels (shot)', 1, '1800.0000', '1800.0000', '0.0000', '85c0394037773324470fa9dd158afb3d.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jack-daniels-shot', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (986, '71', 'Two oceans', 1, '8000.0000', '8000.0000', '0.0000', '7771dd0f1e3bab2091e3cd0c71ecdd2c.jpg', 9, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'two-oceans', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (987, '72', 'Carlo Rossi Red', 1, '10000.0000', '10000.0000', '0.0000', 'b807dac52fabed9eca1aaae624a951d3.png', 9, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'carlo-rossi-red', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (988, '73', 'Liria red', 1, '7000.0000', '7000.0000', '0.0000', 'f874e2a5672deeaba527393a6b8c7ebf.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'liria-red', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (989, '73b', 'Liria red (shot)', 1, '2500.0000', '2500.0000', '0.0000', 'c323c6fc4df832ddbef3e31b17bc1349.jpg', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'liria-red-shot', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (990, '74', 'Four Cousins Red', 1, '10000.0000', '10000.0000', '0.0000', '947245ecca8316c252390aa6bf4c3f0c.png', 9, NULL, '', '', '', '', '', '', '-8.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'four-cousins-red', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (991, '74b', 'Four Cousins Red (shot)', 1, '2500.0000', '2500.0000', '0.0000', 'ff3f4734d473480ba25adebdaef5ffcf.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'four-cousins-red-shot', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (992, '75', 'LA.Merit', 1, '7000.0000', '7000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lamerit', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (993, '75b', 'LA.Merit (shot)', 1, '2500.0000', '2500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lamerit-shot', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (994, '76', 'Nederburg', 1, '16200.0000', '16200.0000', '0.0000', 'b6d82a96e81828567c25cc089b7eb106.jpg', 9, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nederburg', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (995, '77', 'Baron Romero', 1, '7000.0000', '7000.0000', '0.0000', 'e48d9da0c8d1658980c0c27bd0d644ec.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'baron-romero', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (996, '78', 'Escudo Rojo', 1, '10000.0000', '10000.0000', '0.0000', '4ec00477bca7c1a49579bc6c6fba0455.png', 9, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, '', NULL, 'code128', NULL, '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'escudo-rojo', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (997, '79', 'Castillo Red Wine', 1, '7000.0000', '7000.0000', '0.0000', 'd5cafa7d49b6c05ea52f71657209c85d.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'castillo-red-wine', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (998, '80', 'Eva', 1, '6000.0000', '6000.0000', '0.0000', 'd762d1d796f2e6effcc93f7d9bca22a1.jpg', 9, NULL, '', '', '', '', '', '', NULL, 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'eva', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (999, '81', 'Valeta', 1, '6000.0000', '6000.0000', '0.0000', '7cd5d53d216b3530206618cef0b4e106.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'valeta', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1000, '82', 'Chandon', 1, '4500.0000', '4500.0000', '0.0000', '3d8aaa65026780e13a45b4127a69cb25.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chandon', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1001, '83', 'Pure Haven', 1, '6500.0000', '6500.0000', '0.0000', '7867b9eba75cc01614c65fbbdf380b27.jpg', 9, NULL, '', '', '', '', '', '', NULL, 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pure-haven', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1002, '84', 'Martinellis', 1, '9000.0000', '9000.0000', '0.0000', 'de245880be603898d12be0464c503949.jpg', 9, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'martinellis', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1003, '85', '4th Street White', 1, '9000.0000', '9000.0000', '0.0000', '161304d0934e5dbe131c488bb023155b.jpg', 9, NULL, '', '', '', '', '', '', '-5.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '4th-street-white', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1004, '86', 'Liria White', 1, '7000.0000', '7000.0000', '0.0000', 'e063aa8b9b668c0d575cfc239dbd6901.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'liria-white', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1005, '87', 'Carlo Rossi White', 1, '10000.0000', '10000.0000', '0.0000', 'f96211fb7ec1d15a7ee5acd11024d090.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'carlo-rossi-white', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1006, '88', 'Four Cousin White', 1, '6300.0000', '6300.0000', '0.0000', '4fa949e421d37189dace5a2bdf9f3d80.png', 9, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'four-cousin-white', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1007, '89', 'Castillo White Wine', 1, '7000.0000', '7000.0000', '0.0000', 'a46f59397869eb72adcd23457e20cfe2.png', 9, NULL, '', '', '', '', '', '', NULL, 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'castillo-white-wine', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1008, '90', 'Hennessy Vs', 1, '50000.0000', '50000.0000', '0.0000', '5ed2d8d8702d534e4d5821bf28b0b34d.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hennessy-vs', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1009, '91', 'Hennessy Vsop', 1, '80000.0000', '80000.0000', '0.0000', '932f85b574025a8c1175d9dc8403076d.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hennessy-vsop', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1010, '92', 'Regency Vsop', 1, '85000.0000', '85000.0000', '0.0000', 'aa7d9858dd99237e67d656771a921d93.jpg', 9, NULL, '', '', '', '', '', '', '10.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'regency-vsop', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1011, '92b', 'Regency Vsop (shot)', 1, '6000.0000', '6000.0000', '0.0000', 'f8c95d05b7b1ef652a5cb870c1aedeb0.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'regency-vsop-shot', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1012, '93', 'Martell Vs', 1, '65000.0000', '65000.0000', '0.0000', 'd3b5b8c026440834bbdefb8fb05b15b4.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'martell-vs', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1013, '94', 'Remy Martin Vsop', 1, '72000.0000', '72000.0000', '0.0000', '40ea0153ec6ad42f5a9f5d961e039bd5.jpg', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'remy-martin-vsop', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1014, '95', 'Gordon Gin', 1, '4500.0000', '4500.0000', '0.0000', '894bea4b6580ebbbfa9b327e1473607b.jpg', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gordon-gin', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1015, '95b', 'Gordon Gin (shot)', 1, '1500.0000', '1500.0000', '0.0000', 'ab2c2b7a2bb00ffe011c0c305072ccaa.jpg', 9, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gordon-gin-shot', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1016, '96', 'Gordon Gin Small', 1, '2000.0000', '2000.0000', '0.0000', '446de14816a25a75574802e68fb0b13c.jpg', 9, NULL, '', '', '', '', '', '', '-5.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gordon-gin-small', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1017, '97', 'Bombay Sapphire', 1, '12500.0000', '12500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bombay-sapphire', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1018, '98', 'Baley\\\'s', 1, '15500.0000', '15500.0000', '0.0000', '04845b5c6635eaaa3113abdc277a4231.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'baleys', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1019, '98b', 'Baley\\\'s (shot)', 1, '2000.0000', '2000.0000', '0.0000', '3b1c4630d9674d3d63db0bddb256511b.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'baleys-shot', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1020, '99', 'Malibu', 1, '11800.0000', '11800.0000', '0.0000', 'cc27e3abe5a2bc2c12087604a1e268df.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'malibu', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1021, '99b', 'Malibu (shot)', 1, '2000.0000', '2000.0000', '0.0000', '1fe8bd32db5194778ff7bbc4b60237d0.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'malibu-shot', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1022, '100', 'Campari', 1, '20000.0000', '20000.0000', '0.0000', '0b925f87cae5adef48bfd4fcc4e4153d.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'campari', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1023, '100b', 'Campari (shot)', 1, '3000.0000', '3000.0000', '0.0000', '1fc55e843861bd79644a2a7532fcbae2.jpg', 9, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'campari-shot', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1024, '101', 'Cointreau', 1, '25000.0000', '25000.0000', '0.0000', '20324bd2281bb26371828c77375a44b9.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cointreau', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1025, '101b', 'Cointreau (shot)', 1, '4000.0000', '4000.0000', '0.0000', 'f68044c1d431111c9f58d988f78c5e76.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cointreau-shot', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1026, '102', 'Amarula', 1, '25000.0000', '25000.0000', '0.0000', '53a6ce9e6b1176f1511c741c6afe6d9d.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'amarula', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1027, '102b', 'Amarula (shot)', 1, '1400.0000', '1400.0000', '0.0000', '8eff11f726e0661d0bc6cbbe0152a60c.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'amarula-shot', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1028, '103', 'Olmeca White', 1, '25000.0000', '25000.0000', '0.0000', '019c8742056847a64385cd88a278d773.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'olmeca-white', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1029, '103b', 'Olmeca White (shot)', 1, '1500.0000', '1500.0000', '0.0000', 'c83c9b6996b67560ac6a80bf2319b251.jpg', 9, NULL, '', '', '', '', '', '', '-44.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'olmeca-white-shot', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1030, '104', 'Sierra Tequila', 1, '30000.0000', '30000.0000', '0.0000', '654be63713b4c285220138657b2ece3f.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sierra-tequila', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1031, '104b', 'Sierra Tequila (shot)', 1, '1500.0000', '1500.0000', '0.0000', '5e4a333da3a59bc559c8bcbae736ee90.jpg', 9, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sierra-tequila-shot', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1032, '105', 'Gulder', 1, '1800.0000', '1800.0000', '0.0000', 'f58ac2408283be18225ae06ad0786769.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gulder', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1033, '106', 'Star', 1, '1800.0000', '1800.0000', '0.0000', '748100abc2736bca02d99fbe71676939.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'star', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1034, '107', 'Star Raddler', 1, '1000.0000', '1900.0000', '0.0000', '0622317956315b357467bafbfdbdc8f5.jpg', 9, NULL, '', '', '', '', '', '', '20.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'star-raddler', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1035, '108', 'Heineken', 1, '2500.0000', '2500.0000', '0.0000', '46eb9a5ccc6b764d0e7259e0eef9b4da.png', 9, NULL, '', '', '', '', '', '', '2.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'heineken', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1036, '109', 'Guiness Stout (Big)', 1, '2700.0000', '2700.0000', '0.0000', 'c9970259afee44fbde8dd27570f34b03.jpg', 9, NULL, '', '', '', '', '', '', '-8.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'guiness-stout-big', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1037, '110', 'Desperado', 1, '1500.0000', '1500.0000', '0.0000', '308df4a3c63e580fe4e77cdf9ec84609.jpg', 9, NULL, '', '', '', '', '', '', '-6.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'desperado', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1038, '111', 'Guiness Stout (Medium)', 1, '1550.0000', '1550.0000', '0.0000', '455bd81cda0027e69d548f8f88d17c1c.jpg', 9, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'guiness-stout-medium', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1039, '112', 'Budweiser', 1, '1500.0000', '2800.0000', '0.0000', '385dc1f489793d7d56163b276be6133a.png', 9, NULL, '', '', '', '', '', '', '24.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'budweiser', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1040, '113', 'Smirnoff Ice (Can)', 1, '1500.0000', '1500.0000', '0.0000', '8f33700727a42573d8fa0be1e93c04b3.png', 9, NULL, '', '', '', '', '', '', '-9.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'smirnoff-ice-can', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1041, '114', 'Origin Beer', 1, '1500.0000', '1500.0000', '0.0000', 'd11803f6ef9ddbf75061ce333dbbf3f8.png', 9, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'origin-beer', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1042, '115', 'Origin Bitters (75)', 1, '1500.0000', '1500.0000', '0.0000', '3b883b2d5e375e52f1ebb8a684b529c4.jpeg', 9, NULL, '', '', '', '', '', '', '-15.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'origin-bitters-75', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1043, '116', 'Hero', 1, '1000.0000', '1800.0000', '0.0000', '7a9e403f4aebdadcc010c4ea85c4fb29.png', 9, NULL, '', '', '', '', '', '', '11.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hero', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1044, '117', 'Life', 1, '1800.0000', '1800.0000', '0.0000', '4d561780084f374b0c25c0e785c5dd1f.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'life', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1045, '118', 'Origin (Large)', 1, '5000.0000', '5000.0000', '0.0000', '00c941570fa22f324458ff244f092695.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'origin-large', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1046, '119', 'Throphy Beer', 1, '1800.0000', '1800.0000', '0.0000', 'bd260bb947be216824f1a80a8252d5b8.png', 9, NULL, '', '', '', '', '', '', '-9.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'throphy-beer', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1047, '120', 'Chang Beer', 1, '4500.0000', '4500.0000', '0.0000', 'ac09f4fce83170e46a6e17241e05baec.jpg', 9, NULL, '', '', '', '', '', '', '182.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chang-beer', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1048, '121', 'Chang Beer (Can)', 1, '3000.0000', '3000.0000', '0.0000', '83c9a467a45a2c503d3a45e594c618c0.jpg', 9, NULL, '', '', '', '', '', '', '20.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chang-beer-can', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1049, '122', 'Leo Beer', 1, '4500.0000', '4500.0000', '0.0000', 'b2ec795bb80e5b60c2a37841990dcf5f.png', 9, NULL, '', '', '', '', '', '', '149.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'leo-beer', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1051, '124', 'Coca Cola', 1, '500.0000', '500.0000', '0.0000', '3611848ea432ee96dcc15bdd484cc3f8.jpg', 9, NULL, '', '', '', '', '', '', '-37.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'coca-cola', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1052, '125', 'Fanta', 1, '500.0000', '500.0000', '0.0000', '474a8f0fed31ee0cd09aa8a55ee80f35.jpg', 9, NULL, '', '', '', '', '', '', '-7.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fanta', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1053, '126', 'Sprite', 1, '500.0000', '500.0000', '0.0000', '059368d57575666bcae7fb8f4ddbe92d.jpeg', 9, NULL, '', '', '', '', '', '', '-9.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sprite', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1054, '127', 'Team Soda Water', 1, '500.0000', '500.0000', '0.0000', 'b70e2b136a4ad222a25e3fe5dd2551a2.png', 9, NULL, '', '', '', '', '', '', '-24.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'team-soda-water', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1055, '128', 'Maltina', 1, '500.0000', '500.0000', '0.0000', '770d5cd208917783e23be1942596fa39.jpg', 9, NULL, '', '', '', '', '', '', '-12.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'maltina', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1056, '129', 'Dubic Malt', 1, '500.0000', '500.0000', '0.0000', 'adbd5b29dbd04a445579487abfd5a5a0.jpg', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dubic-malt', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1057, '130', 'Redbull', 1, '2000.0000', '2000.0000', '0.0000', '973056ddb88206c87d69360fff4e99f7.jpg', 9, NULL, '', '', '', '', '', '', '-13.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'redbull', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1058, '131', 'Bullet', 1, '2000.0000', '2000.0000', '0.0000', 'f70bf11808fbf7ef5e01e5aa1e7875f8.jpg', 9, NULL, '', '', '', '', '', '', '-19.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bullet', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1059, '132', 'Bottle Water', 1, '500.0000', '500.0000', '0.0000', '37c0eb56c0b0f480f49e34096fab7273.jpg', 9, NULL, '', '', '', '', '', '', '-358.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bottle-water', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1060, '133', 'Margarita', 1, '3500.0000', '3500.0000', '0.0000', '926d74c795d94a9d4a6101dedd7156a2.jpg', 9, NULL, '', '', '', '', '', '', '-8.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'margarita', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1061, '134', 'Pina Colada', 1, '3500.0000', '3500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-14.0000', 1, 1, NULL, NULL, 'code155', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pina-colada', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1062, '135', 'Tequila Sunrise', 1, '3500.0000', '3500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, NULL, NULL, 'code156', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tequila-sunrise', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1063, '136', 'Screw Driver', 1, '3500.0000', '3500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, 'code157', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'screw-driver', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1064, '137', 'Mojito', 1, '2500.0000', '2500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-10.0000', 1, 1, NULL, NULL, 'code158', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mojito', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1065, '138', 'Sex on the Beach', 1, '4000.0000', '4000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, NULL, NULL, 'code159', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sex-on-the-beach', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1066, '139', 'Mai Tai', 1, '4000.0000', '4000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-5.0000', 1, 1, NULL, NULL, 'code160', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mai-tai', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1067, '140', 'Cosmopolitan', 1, '4000.0000', '4000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-6.0000', 1, 1, NULL, NULL, 'code161', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cosmopolitan', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1068, '141', 'Negroni', 1, '4000.0000', '4000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code162', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'negroni', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1069, '142', 'Tom Collins', 1, '4000.0000', '4000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code163', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tom-collins', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1070, '143', 'Gin & Tonic', 1, '4000.0000', '4000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, NULL, NULL, 'code164', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gin-tonic', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1071, '144', 'Malibu Sunset', 1, '4000.0000', '4000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, NULL, NULL, 'code165', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malibu-sunset', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '145', 'Long Island Iced Tea', 1, '4000.0000', '4000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-25.0000', 1, 1, NULL, NULL, 'code166', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'long-island-iced-tea', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1073, '146', 'Tequila Sunrise', 1, '5000.0000', '5000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, NULL, NULL, 'code167', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tequila-sunrise', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1074, '147', 'Vanila Milkshake', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-41.0000', 1, 1, NULL, NULL, 'code168', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vanila-milkshake', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1075, '148', 'Chocolate Milkshake', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-13.0000', 1, 1, NULL, NULL, 'code169', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chocolate-milkshake', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1076, '149', 'Strawberry Milkshake', 1, '5000.0000', '5000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-19.0000', 1, 1, NULL, NULL, 'code170', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'strawberry-milkshake', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1077, '150', 'Oreo Milkshake', 1, '5000.0000', '5000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, NULL, NULL, 'code171', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'oreo-milkshake', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1078, '151', 'Chi Exotic', 1, '2000.0000', '2000.0000', '0.0000', 'c17a75b83801a9eca43d0e86a458f7bc.jpg', 9, NULL, '', '', '', '', '', '', '-6.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chi-exotic', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1079, '152', 'Chivita Active', 1, '2000.0000', '2000.0000', '0.0000', '38bc06a5926d0a0e014f39f5132eccf0.jpg', 9, NULL, '', '', '', '', '', '', '-6.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chivita-active', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1080, '153', 'Longan Juice', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-31.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'longan-juice', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1081, '154', 'Chrysanthemum Juice', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-12.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chrysanthemum-juice', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1082, '155', 'Roselle Juice', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-10.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'roselle-juice', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1083, '156', 'Bael Fruit Juice', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-5.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bael-fruit-juice', NULL, '0.0000', NULL, 5, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1084, '157', 'Pandan Juice', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pandan-juice', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1085, '158', 'Thai Iced Black Coffee', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-16.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'thai-iced-black-coffee', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1086, '159', 'Thai Tea', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-83.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'thai-tea', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1087, '160', 'Milk Tea', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-29.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'milk-tea', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1088, '161', 'Green Tea', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-20.0000', 1, 1, '', NULL, 'code25', NULL, '', 0, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'green-tea', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1089, '162', 'Orange Juice', 1, '2500.0000', '2500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-44.0000', 1, 1, NULL, NULL, 'code183', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'orange-juice', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1090, '163', 'Pineapple Juice', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-30.0000', 1, 1, NULL, NULL, 'code184', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pineapple-juice', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1091, '164', 'Water Melon Juice', 1, '2500.0000', '2500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-12.0000', 1, 1, NULL, NULL, 'code185', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'water-melon-juice', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1092, '165', 'Strawberry Juice', 1, '5000.0000', '5000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-10.0000', 1, 1, NULL, NULL, 'code186', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'strawberry-juice', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1093, '166', 'Lemon Juice', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-7.0000', 1, 1, NULL, NULL, 'code187', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lemon-juice', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1094, '167', 'Chapman', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-26.0000', 1, 1, NULL, NULL, 'code188', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chapman', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1095, '168', 'After-glo', 1, '2500.0000', '2500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, NULL, NULL, 'code189', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'after-glo', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1096, '169', 'Tropical Storm', 1, '2500.0000', '2500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-9.0000', 1, 1, NULL, NULL, 'code190', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tropical-storm', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '170', 'Fresh Fruit Punch', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-35.0000', 1, 1, NULL, NULL, 'code191', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fresh-fruit-punch', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '171', 'Cat Fish Peppersoup', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code192', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cat-fish-peppersoup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '172', 'Cowleg Peppersoup', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code193', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cowleg-peppersoup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '173', 'Goat Meat Peppersoup', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code194', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'goat-meat-peppersoup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '174', 'Chicken Peppersoup', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code195', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chicken-peppersoup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '175', 'Fisherman Peppersoup', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code196', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fisherman-peppersoup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '176', 'Ponmo Peppersoup', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code197', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ponmo-peppersoup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '177', 'Goat Head Peppersoup', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code198', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'goat-head-peppersoup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '178', 'Cow Head Peppersoup', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code199', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cow-head-peppersoup', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '179', 'Peppered Chicken Meat', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, 'code200', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'peppered-chicken-meat', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '180', 'Peppered Beef', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code201', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'peppered-beef', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '181', 'Peppered Goat Meat', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code202', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'peppered-goat-meat', NULL, NULL, 0, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, 'PR44A', 'FRIED FRISH-PASTE BALL', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fried-frish-paste-ball', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, 'PR171', 'HOT COFFEE', 1, '3500.0000', '3500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hot-coffee', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1111, 'PR999', 'TAKE AWAY', 1, '500.0000', '500.0000', '0.0000', 'no_image.png', 10, NULL, '', '', '', '', '', '', '-365.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'take-away', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, 'PR173', 'Ichitan orange', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '5.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'ichitan-orange', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1113, 'PR1000', 'BRAISED BEEF STEW', 1, '10400.0000', '10400.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'braised-beef-stew', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, 'PR1001', 'Fried egg', 1, '500.0000', '500.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-7.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fried-egg', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '123a', 'bottle singha beer', 1, '5500.0000', '5500.0000', '0.0000', '0351e7f12fa437cfb06564e545bcdcee.jpg', 9, NULL, '', '', '', '', '', '', '122.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bottle-singha-beer', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1116, '123', 'Singha beer can', 1, '3000.0000', '3000.0000', '0.0000', '374d26d344e04f3b086502167f767861.jpeg', 9, NULL, '', '', '', '', '', '', '21.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'singha-beer-can', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1117, '185', 'FRENCH  FRIES', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-3.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'french-fries', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '189', 'FISH SAUCE CHILI', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, 0, 'fish-sauce-chili', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '190', 'JAEW DIPPING SAUCE', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jaew-dipping-sauce', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '191', 'THAI SPICY SEAFOOD DIPPING SAUCE', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'thai-spicy-seafood-dipping-sauce', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '182', 'Andre', 1, '12000.0000', '12000.0000', '0.0000', '2baab11ba20fed86b490f124b8d106c7.png', 9, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'andre', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1122, '200', 'EXTRA  NOODLES', 1, '1500.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'extra-noodles', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '183', 'Double Black', 1, '1500.0000', '1500.0000', '0.0000', '37ed35e379b04aa73765de4238148d09.png', 9, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'double-black', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1124, '998', 'BEAN  PAEP  ', 1, '4500.0000', '4500.0000', '0.0000', 'no_image.png', 8, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bean-paep', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '997', 'PINEAPPLE  FRIED RICE', 1, '10500.0000', '10500.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pineapple-fried-rice', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1126, '996', 'HOT TEA', 1, '4500.0000', '4500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-19.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hot-tea', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1127, '994', 'FRIED FISH ( S )', 1, '13000.0000', '13000.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'fried-fish', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '993', 'FRIED FISH ( M )', 1, '15000.0000', '15000.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fried-fish-m', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '992', 'Spaghetti  with spicy  seafood', 1, '10900.0000', '10900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'spaghetti-with-spicy-seafood', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '991', 'Spaghetti  with spicy', 1, '9900.0000', '9900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'spaghetti-with-spicy', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '899', 'STEAMER SEABASS  WITH  LIME  AND CHILLIES', 1, '15000.0000', '15000.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'steamer-seabass-with-lime-and-chillies', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, 'CIG', 'Cigarette', 1, '1500.0000', '1500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-9.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cigarette', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1133, '898', 'Fried french fries', 1, '2500.0000', '2500.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fried-french-fries', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, 'ICH', 'Ichitan green', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '19.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ichitan-green', 1, '0.0000', NULL, 16, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, 'ICHI', 'Ichitan yellow', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ichitan-yellow', 1, '0.0000', NULL, 13, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '895', 'MANGO JUICE', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mango-juice', NULL, '0.0000', NULL, 4, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1137, '8', 'Pad Thai ( egg)', 1, '6900.0000', '6900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pad-thai-egg', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '894', 'HOT GINGER', 1, '2500.0000', '2500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hot-ginger', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1139, '893', 'chicken', 1, '1500.0000', '1500.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chicken', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_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, '883', 'Jack Daniels ( s )', 1, '4000.0000', '4000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'jack-daniels-s', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1141, 'JDS', 'Jack daniels small', 1, '5000.0000', '5000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jack-daniels-small', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1142, 'GS', 'Guiness Smooth', 1, '900.0000', '1800.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '20.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'guiness-smooth', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1143, '882', 'fried squid with garlic on rice', 1, '6900.0000', '6900.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fried-squid-with-garlic-on-rice', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1144, '881', 'hollanddia yoghurt', 1, '2500.0000', '2500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hollanddia-yoghurt', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1145, '880', 'shisha', 1, '5000.0000', '5000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-4.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'shisha', NULL, '0.0000', NULL, 1, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1146, '879', 'extra shisha', 1, '1000.0000', '1000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'extra-shisha', NULL, '0.0000', NULL, 3, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1147, '873', 'eggs sauce', 1, '2000.0000', '2000.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'eggs-sauce', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1148, '872', 'Boiled and spicy', 1, '8900.0000', '8900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-2.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'boiled-and-spicy', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1149, '871', 'Hollandia yoghurt', 1, '3000.0000', '3000.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hollandia-yoghurt', NULL, '0.0000', NULL, 2, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1150, '870', 'egg', 1, '500.0000', '500.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'egg', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1151, '869', 'Steamed fish with lemon  { s }', 1, '13000.0000', '1300.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'steamed-fish-with-lemon-s', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1152, '868', 'Steamed fish with lemon  { m }', 1, '15000.0000', '15000.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'steamed-fish-with-lemon-m', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1153, '875', 'AGOR', 1, '7500.0000', '7500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'agor', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1154, '4f', 'fried rice with eggs', 1, '6900.0000', '6900.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '0.0000', 4, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fried-rice-with-eggs', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1155, '4V', 'Fried rice with vegetable ', 1, '5900.0000', '5900.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fried-rice-with-vegetable', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1156, '18V', 'Red curry with vegetable', 1, '5900.0000', '5900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'red-curry-with-vegetable', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1157, 'PR10012', 'chicken and chip', 1, '6500.0000', '6500.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chicken-and-chip', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1158, '8V', 'Pad Thai vegetable ', 1, '6900.0000', '6900.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '0.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pad-thai-vegetable', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (1159, 'PR11109', 'schweppes tonic water ', 1, '500.0000', '500.0000', '0.0000', 'no_image.png', 9, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, '', NULL, 'code128', '', '', 1, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'schweppes-tonic-water', 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=utf8mb3 COLLATE=utf8mb3_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=428 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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 (1, NULL, NULL, 40, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2, NULL, NULL, 4, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3, NULL, NULL, 10, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4, NULL, NULL, 56, '', '', 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 (5, NULL, NULL, 1, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6, NULL, NULL, 60, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7, NULL, NULL, 42, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-14.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8, NULL, NULL, 13, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9, NULL, NULL, 8, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10, NULL, NULL, 69, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11, NULL, NULL, 72, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12, NULL, NULL, 71, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-41.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13, NULL, NULL, 52, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14, NULL, NULL, 33, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15, NULL, NULL, 39, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16, NULL, NULL, 28, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17, NULL, NULL, 47, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18, NULL, NULL, 43, '', '', 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 (19, NULL, NULL, 59, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20, NULL, NULL, 7, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21, NULL, NULL, 77, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22, NULL, NULL, 17, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-13.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23, NULL, NULL, 76, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-51.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24, NULL, NULL, 142, '', '', 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 (25, NULL, NULL, 51, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (26, NULL, NULL, 64, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27, NULL, NULL, 58, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (28, NULL, NULL, 9, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-23.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (29, NULL, NULL, 48, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30, NULL, NULL, 154, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31, NULL, NULL, 129, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32, NULL, NULL, 12, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-13.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33, NULL, NULL, 19, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34, NULL, NULL, 164, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35, NULL, NULL, 136, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36, NULL, NULL, 3, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (37, NULL, NULL, 16, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38, NULL, NULL, 62, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39, NULL, NULL, 132, '', '', 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 (40, NULL, NULL, 147, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (41, NULL, NULL, 5, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (42, NULL, NULL, 29, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43, NULL, NULL, 135, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44, NULL, NULL, 11, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (45, NULL, NULL, 53, '', '', 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 (46, NULL, NULL, 22, '', '', 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 (47, NULL, NULL, 44, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48, NULL, NULL, 151, '', '', 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 (49, NULL, NULL, 89, '', '', 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 (50, NULL, NULL, 165, '', '', 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 (51, NULL, NULL, 149, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52, NULL, NULL, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', NULL, '8900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '8900.0000', '-4.0000', '2023-10-19', 'received', '8900.0000', '8900.0000', '1.0000', NULL, NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53, NULL, NULL, 65, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54, NULL, NULL, 55, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (55, NULL, NULL, 166, '', '', 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 (56, NULL, NULL, 167, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (57, NULL, NULL, 168, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (58, NULL, NULL, 169, '', '', 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 (59, NULL, NULL, 170, '', '', 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 (60, NULL, NULL, 26, '', '', 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 (61, NULL, NULL, 171, '', '', 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 (62, NULL, NULL, 68, '', '', 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 (63, NULL, NULL, 66, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64, NULL, NULL, 15, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65, NULL, NULL, 178, '', '', 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 (66, NULL, NULL, 63, '', '', 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 (67, NULL, NULL, 141, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (68, NULL, NULL, 57, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (69, NULL, NULL, 32, '', '', 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 (70, NULL, NULL, 35, '', '', 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 (71, NULL, NULL, 46, '', '', 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 (72, NULL, NULL, 37, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (73, NULL, NULL, 31, '', '', 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 (74, NULL, NULL, 113, '', '', 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 (75, NULL, NULL, 292, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (76, NULL, NULL, 402, '', '', 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 (77, NULL, NULL, 476, '', '', 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 (78, NULL, NULL, 603, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (79, NULL, NULL, 729, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (80, NULL, NULL, 624, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-19.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (81, NULL, NULL, 707, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (82, NULL, NULL, 740, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (83, NULL, NULL, 622, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (84, NULL, NULL, 847, '', '', 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 (85, NULL, NULL, 684, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (86, NULL, NULL, 754, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-14.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (87, NULL, NULL, 760, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (88, NULL, NULL, 631, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-16.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (89, NULL, NULL, 720, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (90, NULL, NULL, 823, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-72.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (91, NULL, NULL, 625, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (92, NULL, NULL, 722, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (93, NULL, NULL, 786, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (94, NULL, NULL, 845, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (95, NULL, NULL, 846, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (96, NULL, NULL, 788, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (97, NULL, NULL, 730, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (98, NULL, NULL, 712, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (99, NULL, NULL, 713, '', '', 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 (100, NULL, NULL, 737, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (101, NULL, NULL, 723, '', '', 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 (102, NULL, NULL, 848, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (103, NULL, NULL, 826, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-56.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (104, NULL, NULL, 789, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (105, NULL, NULL, 692, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (106, NULL, NULL, 683, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (107, NULL, NULL, 715, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (108, NULL, NULL, 650, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (109, NULL, NULL, 698, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (110, NULL, NULL, 704, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (111, NULL, NULL, 691, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (112, NULL, NULL, 632, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (113, NULL, NULL, 849, '', '', 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 (114, NULL, NULL, 850, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (115, NULL, NULL, 727, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (116, NULL, NULL, 655, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (117, NULL, NULL, 735, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-16.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (118, NULL, NULL, 626, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (119, NULL, NULL, 697, '', '', 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 (120, NULL, NULL, 757, '', '', 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 (121, NULL, NULL, 820, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (122, NULL, NULL, 745, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (123, NULL, NULL, 676, '', '', 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 (124, NULL, NULL, 742, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (125, NULL, NULL, 795, '', '', 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 (126, NULL, NULL, 741, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (127, NULL, NULL, 736, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (128, NULL, NULL, 646, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (129, NULL, NULL, 627, '', '', 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 (130, NULL, NULL, 822, '', '', 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 (131, NULL, NULL, 790, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (132, NULL, NULL, 781, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (133, NULL, NULL, 738, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (134, NULL, NULL, 703, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (135, NULL, NULL, 851, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (136, NULL, NULL, 824, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (137, NULL, NULL, 658, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (138, NULL, NULL, 699, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (139, NULL, NULL, 711, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (140, NULL, NULL, 695, '', '', 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 (141, NULL, NULL, 852, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (142, NULL, NULL, 659, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (143, NULL, NULL, 651, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (144, NULL, NULL, 816, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (145, NULL, NULL, 696, '', '', 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 (146, NULL, NULL, 675, '', '', 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 (147, NULL, NULL, 681, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (148, NULL, NULL, 813, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (149, NULL, NULL, 647, '', '', 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 (150, NULL, NULL, 719, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-16.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (151, NULL, NULL, 630, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (152, NULL, NULL, 718, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (153, NULL, NULL, 734, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (154, NULL, NULL, 633, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (155, NULL, NULL, 629, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (156, NULL, NULL, 677, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (157, NULL, NULL, 634, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (158, NULL, NULL, 673, '', '', 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 (159, NULL, NULL, 739, '', '', 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 (160, NULL, NULL, 678, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (161, NULL, NULL, 716, '', '', 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 (162, NULL, NULL, 783, '', '', 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 (163, NULL, NULL, 656, '', '', 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 (164, NULL, NULL, 853, '', '', 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 (165, NULL, NULL, 854, '', '', 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 (166, NULL, NULL, 812, '', '', 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 (167, NULL, NULL, 855, '', '', 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 (168, NULL, NULL, 623, '', '', 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 (169, NULL, NULL, 732, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (170, NULL, NULL, 679, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (171, NULL, NULL, 728, '', '', 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 (172, NULL, NULL, 787, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (173, NULL, NULL, 844, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (174, NULL, NULL, 708, '', '', 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 (175, NULL, NULL, 668, '', '', 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 (176, NULL, NULL, 635, '', '', 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 (177, NULL, NULL, 731, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (178, NULL, NULL, 700, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (179, NULL, NULL, 726, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (180, NULL, NULL, 672, '', '', 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 (181, NULL, NULL, 648, '', '', 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 (182, NULL, NULL, 680, '', '', 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 (183, NULL, NULL, 643, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (184, NULL, NULL, 791, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (185, NULL, NULL, 759, '', '', 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 (186, NULL, NULL, 748, '', '', 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 (187, NULL, NULL, 779, '', '', 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 (188, NULL, NULL, 834, '', '', 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 (189, NULL, NULL, 702, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (190, NULL, NULL, 753, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (191, NULL, NULL, 821, '', '', 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 (192, NULL, NULL, 856, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-63.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (193, NULL, NULL, 890, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (194, NULL, NULL, 914, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-13.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (195, NULL, NULL, 941, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-27.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (196, NULL, NULL, 932, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (197, NULL, NULL, 936, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (198, NULL, NULL, 937, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-17.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (199, NULL, NULL, 884, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-24.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (200, NULL, NULL, 906, '', '', 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 (201, NULL, NULL, 1076, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-19.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (202, NULL, NULL, 1086, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-83.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (203, NULL, NULL, 1059, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-358.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (204, NULL, NULL, 956, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-39.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (205, NULL, NULL, 892, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-27.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (206, NULL, NULL, 953, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-40.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (207, NULL, NULL, 867, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-43.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (208, NULL, NULL, 1081, '', '', 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 (209, NULL, NULL, 1080, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-31.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (210, NULL, NULL, 960, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-31.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (211, NULL, NULL, 1087, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-29.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (212, NULL, NULL, 860, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-61.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (213, NULL, NULL, 1054, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-24.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (214, NULL, NULL, 1110, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (215, NULL, NULL, 1057, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-13.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (216, NULL, NULL, 1050, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (217, NULL, NULL, 1091, '', '', 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 (218, NULL, NULL, 858, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-44.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (219, NULL, NULL, 1092, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (220, NULL, NULL, 1094, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (221, NULL, NULL, 1064, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (222, NULL, NULL, 945, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-19.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (223, NULL, NULL, 866, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-98.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (224, NULL, NULL, 863, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-24.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (225, NULL, NULL, 940, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (226, NULL, NULL, 865, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-103.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (227, NULL, NULL, 911, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-13.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (228, NULL, NULL, 1047, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (229, NULL, NULL, 931, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-13.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (230, NULL, NULL, 1111, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-365.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (231, NULL, NULL, 949, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (232, NULL, NULL, 935, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (233, NULL, NULL, 1010, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (234, NULL, NULL, 1051, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-37.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (235, NULL, NULL, 1112, '', '', 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 (236, NULL, NULL, 864, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-13.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (237, NULL, NULL, 917, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-16.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (238, NULL, NULL, 1090, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-30.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (239, 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 (240, NULL, NULL, 868, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-32.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (241, NULL, NULL, 915, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-17.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (242, NULL, NULL, 928, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (243, NULL, NULL, 1074, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-41.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (244, NULL, NULL, 952, '', '', 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 (245, NULL, NULL, 919, '', '', 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 (246, 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 (247, NULL, NULL, 886, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (248, NULL, NULL, 1113, '', '', 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 (249, NULL, NULL, 882, '', '', 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 (250, NULL, NULL, 1088, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-20.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (251, NULL, NULL, 1085, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-16.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (252, NULL, NULL, 1083, '', '', 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 (253, NULL, NULL, 1055, '', '', 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 (254, NULL, NULL, 876, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (255, NULL, NULL, 957, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (256, NULL, NULL, 942, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-26.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (257, NULL, NULL, 955, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (258, NULL, NULL, 877, '', '', 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 (259, NULL, NULL, 918, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-44.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (260, NULL, NULL, 1037, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (261, NULL, NULL, 976, '', '', 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 (262, NULL, NULL, 887, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (263, NULL, NULL, 1036, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (264, NULL, NULL, 1016, '', '', 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 (265, NULL, NULL, 926, '', '', 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 (266, NULL, NULL, 859, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-57.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (267, NULL, NULL, 1114, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (268, NULL, NULL, 912, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-18.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (269, NULL, NULL, 1002, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (270, NULL, NULL, 950, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-22.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (271, NULL, NULL, 1115, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (272, NULL, NULL, 885, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-19.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (273, NULL, NULL, 1042, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (274, NULL, NULL, 901, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (275, NULL, NULL, 869, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (276, 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 (277, NULL, NULL, 1014, '', '', 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 (278, NULL, NULL, 933, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-30.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (279, NULL, NULL, 925, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (280, NULL, NULL, 929, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (281, NULL, NULL, 872, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (282, NULL, NULL, 1072, '', '', 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 (283, NULL, NULL, 861, '', '', 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 (284, NULL, NULL, 946, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-28.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (285, NULL, NULL, 958, '', '', 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 (286, NULL, NULL, 894, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (287, NULL, NULL, 1097, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-35.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (288, NULL, NULL, 959, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-21.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (289, NULL, NULL, 893, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-15.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (290, NULL, NULL, 1073, '', '', 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 (291, NULL, NULL, 948, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-50.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (292, NULL, NULL, 1117, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (293, 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 (294, NULL, NULL, 938, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (295, NULL, NULL, 930, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (296, NULL, NULL, 1118, '', '', 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 (297, NULL, NULL, 1119, '', '', 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 (298, NULL, NULL, 1120, '', '', 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 (299, NULL, NULL, 943, '', '', 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 (300, NULL, NULL, 934, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (301, NULL, NULL, 1038, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (302, NULL, NULL, 880, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (303, NULL, NULL, 889, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (304, NULL, NULL, 1121, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (305, NULL, NULL, 1095, '', '', 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 (306, NULL, NULL, 913, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (307, NULL, NULL, 1082, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (308, NULL, NULL, 1122, '', '', 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 (309, NULL, NULL, 954, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (310, NULL, NULL, 1006, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (311, NULL, NULL, 1029, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-44.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (312, NULL, NULL, 996, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (313, NULL, NULL, 857, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (314, NULL, NULL, 907, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (315, NULL, NULL, 1123, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (316, NULL, NULL, 1124, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (317, NULL, NULL, 897, '', '', 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 (318, NULL, NULL, 1125, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (319, NULL, NULL, 1075, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-13.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (320, NULL, NULL, 994, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (321, NULL, NULL, 1061, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-14.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (322, NULL, NULL, 1031, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (323, NULL, NULL, 1126, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-19.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (324, NULL, NULL, 986, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (325, NULL, NULL, 990, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (326, NULL, NULL, 909, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (327, NULL, NULL, 1127, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (328, NULL, NULL, 1130, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (329, NULL, NULL, 987, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (330, NULL, NULL, 1062, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (331, NULL, NULL, 1089, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-44.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (332, NULL, NULL, 1071, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (333, NULL, NULL, 905, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (334, NULL, NULL, 1067, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (335, NULL, NULL, 1093, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (336, NULL, NULL, 1096, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (337, NULL, NULL, 1060, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (338, NULL, NULL, 1106, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (339, NULL, NULL, 970, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (340, NULL, NULL, 908, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (341, NULL, NULL, 902, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (342, NULL, NULL, 961, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (343, NULL, NULL, 939, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (344, NULL, NULL, 977, '', '', 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 (345, NULL, NULL, 1079, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (346, 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 (347, NULL, NULL, 921, '', '', 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 (348, NULL, NULL, 910, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (349, NULL, NULL, 1133, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (350, NULL, NULL, 1066, '', '', 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 (351, NULL, NULL, 1003, '', '', 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 (353, NULL, NULL, 979, '', '', 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 (354, NULL, NULL, 1053, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (355, NULL, NULL, 1058, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-19.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (356, NULL, NULL, 962, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (357, 2, NULL, 1049, '122', 'Leo Beer', NULL, '4500.0000', '189.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '850500.0000', '149.0000', '2023-11-12', 'received', '4500.0000', '4500.0000', '189.0000', NULL, NULL, 1, 'QTY', '189.0000', NULL, NULL, NULL, NULL, '4500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (358, 2, NULL, 1047, '120', 'Chang Beer', NULL, '4500.0000', '199.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '895500.0000', '181.0000', '2023-11-12', 'received', '4500.0000', '4500.0000', '199.0000', NULL, NULL, 1, 'QTY', '199.0000', NULL, NULL, NULL, NULL, '4500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (359, 2, NULL, 1115, '123a', 'bottle singha beer', NULL, '5500.0000', '145.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '797500.0000', '122.0000', '2023-11-12', 'received', '5500.0000', '5500.0000', '145.0000', NULL, NULL, 1, 'QTY', '145.0000', NULL, NULL, NULL, NULL, '5500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (360, 2, NULL, 1048, '121', 'Chang Beer (Can)', NULL, '3000.0000', '22.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '66000.0000', '15.0000', '2023-11-12', 'received', '3000.0000', '3000.0000', '22.0000', NULL, NULL, 1, 'QTY', '22.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (361, 2, NULL, 1116, '123', 'Singha beer can', NULL, '3000.0000', '21.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '63000.0000', '21.0000', '2023-11-12', 'received', '3000.0000', '3000.0000', '21.0000', NULL, NULL, 1, 'QTY', '21.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (362, 3, NULL, 1047, '120', 'Chang Beer', NULL, '4500.0000', '18.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '81000.0000', '1.0000', '2023-11-12', 'received', '4500.0000', '4500.0000', '18.0000', NULL, NULL, 1, 'QTY', '18.0000', NULL, NULL, NULL, NULL, '4500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (363, 3, NULL, 1048, '121', 'Chang Beer (Can)', NULL, '3000.0000', '7.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '21000.0000', '5.0000', '2023-11-12', 'received', '3000.0000', '3000.0000', '7.0000', NULL, NULL, 1, 'QTY', '7.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (364, 3, NULL, 1049, '122', 'Leo Beer', NULL, '4500.0000', '14.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '63000.0000', '0.0000', '2023-11-12', 'received', '4500.0000', '4500.0000', '14.0000', NULL, NULL, 1, 'QTY', '14.0000', NULL, NULL, NULL, NULL, '4500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 3, NULL, 1115, '123a', 'bottle singha beer', NULL, '5500.0000', '11.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '60500.0000', '0.0000', '2023-11-12', 'received', '5500.0000', '5500.0000', '11.0000', NULL, NULL, 1, 'QTY', '11.0000', NULL, NULL, NULL, NULL, '5500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 4, NULL, 1112, 'PR173', 'Ichitan orange', NULL, '3000.0000', '15.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '45000.0000', '0.0000', '2023-11-12', 'received', '3000.0000', '3000.0000', '15.0000', NULL, NULL, 1, 'QTY', '15.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 5, NULL, 1134, 'ICH', 'Ichitan green', NULL, '3000.0000', '22.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '66000.0000', '19.0000', '2023-11-12', 'received', '3000.0000', '3000.0000', '22.0000', NULL, NULL, 1, 'QTY', '22.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 891, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (370, NULL, NULL, 1040, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (371, NULL, NULL, 1007, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (372, NULL, NULL, 920, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (373, NULL, NULL, 1065, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (374, NULL, NULL, 1136, '', '', 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 (375, NULL, NULL, 1070, '', '', 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 (376, NULL, NULL, 895, '', '', 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 (377, NULL, NULL, 947, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (378, NULL, NULL, 870, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (379, NULL, NULL, 1041, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (380, NULL, NULL, 922, '', '', 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 (381, NULL, NULL, 1138, '', '', 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 (382, NULL, NULL, 1023, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (383, NULL, NULL, 1139, '', '', 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 (384, NULL, NULL, 1052, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (385, NULL, NULL, 1046, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (386, NULL, NULL, 951, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (387, NULL, NULL, 1078, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-6.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (388, NULL, NULL, 888, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (389, NULL, NULL, 873, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (390, NULL, NULL, 989, '', '', 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 (391, NULL, NULL, 1132, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (392, NULL, NULL, 1140, '', '', 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 (393, NULL, NULL, 898, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (394, 6, NULL, 1039, '112', 'Budweiser', NULL, '2800.0000', '26.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '72800.0000', '24.0000', '2023-11-24', 'received', '2800.0000', '2800.0000', '26.0000', NULL, NULL, 1, 'QTY', '26.0000', NULL, NULL, NULL, NULL, '2800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (395, 6, NULL, 1035, '108', 'Heineken', NULL, '2500.0000', '58.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '145000.0000', '2.0000', '2023-11-24', 'received', '2500.0000', '2500.0000', '58.0000', NULL, NULL, 1, 'QTY', '58.0000', NULL, NULL, NULL, NULL, '2500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (396, 6, NULL, 1043, '116', 'Hero', NULL, '1800.0000', '12.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '21600.0000', '11.0000', '2023-11-24', 'received', '1800.0000', '1800.0000', '12.0000', NULL, NULL, 1, 'QTY', '12.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (397, 6, NULL, 1034, '107', 'Star Raddler', NULL, '1900.0000', '27.0000', 1, '0.0000', 1, '0', '0', '0.0000', NULL, '51300.0000', '20.0000', '2023-11-24', 'received', '1900.0000', '1900.0000', '27.0000', NULL, NULL, 1, 'QTY', '27.0000', NULL, NULL, NULL, NULL, '1900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (398, NULL, NULL, 1142, 'GS', 'Guiness Smooth', NULL, '900.0000', '20.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '18000.0000', '20.0000', '2023-11-24', 'received', '900.0000', '900.0000', '20.0000', NULL, NULL, 1, 'QTY', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (399, NULL, NULL, 871, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (400, NULL, NULL, 1143, '', '', 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 (401, NULL, NULL, 874, '', '', 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 (402, NULL, NULL, 1144, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (403, NULL, NULL, 1145, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (404, NULL, NULL, 862, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (405, NULL, NULL, 916, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (406, NULL, NULL, 1008, '', '', 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 (407, NULL, NULL, 1013, '', '', 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 (408, NULL, NULL, 982, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (409, NULL, NULL, 1147, '', '', 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 (410, NULL, NULL, 1148, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (411, NULL, NULL, 1149, '', '', 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 (412, NULL, NULL, 980, '', '', 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 (413, NULL, NULL, 1150, '', '', 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 (414, NULL, NULL, 975, '', '', 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 (415, NULL, NULL, 1151, '', '', 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 (416, NULL, NULL, 1000, '', '', 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 (417, NULL, NULL, 1077, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (418, NULL, NULL, 881, '', '', 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 (419, NULL, NULL, 998, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 927, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `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, 964, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (422, NULL, NULL, 1153, '', '', 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 (423, NULL, NULL, 1015, '', '', NULL, '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (424, NULL, NULL, 1155, '', '', 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 (425, NULL, NULL, 1156, '', '', 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 (426, NULL, NULL, 1157, '', '', 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 (427, NULL, NULL, 1159, '', '', 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);


#
# 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=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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 (2, 'PO2023/11/0002', '2023-11-12 14:33:00', 2, 'Supplier Company Name', 1, '', '2672500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '200437.5000', '200437.5000', '0.0000', '2872937.5000', '2872937.5000', 'received', 'paid', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (3, 'PO2023/11/0003', '2023-11-12 14:37:00', 2, 'Supplier Company Name', 1, '', '225500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '16912.5000', '16912.5000', '0.0000', '242412.5000', '242412.5000', 'received', 'paid', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (4, 'PO2023/11/0004', '2023-11-12 18:10:00', 2, 'Supplier Company Name', 1, '', '45000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3375.0000', '3375.0000', '0.0000', '48375.0000', '48375.0000', 'received', 'paid', 2, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (5, 'PO2023/11/0005', '2023-11-12 18:27:00', 2, 'Supplier Company Name', 1, '', '66000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4950.0000', '4950.0000', '0.0000', '70950.0000', '70950.0000', 'received', 'paid', 2, 2, '2023-11-12 18:28:18', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (6, 'PO2023/11/0006', '2023-11-24 20:34:00', 2, 'Supplier Company Name', 1, '', '290700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '21802.5000', '21802.5000', '0.0000', '312502.5000', '312502.5000', 'received', 'paid', 2, 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=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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 (3, 2, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', NULL, '15000.0000', 1, 'QTY', '1.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 (4, 2, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', NULL, '8900.0000', 1, 'QTY', '1.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 (5, 2, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', NULL, '9900.0000', 1, 'QTY', '1.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 (6, 2, 902, '19b', 'Panang curry (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', NULL, '9900.0000', 1, 'QTY', '1.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=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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 (2, '2023-11-22 15:40:11', 'QUOTE2023/11/0002', 24, 'Table 3', 1, 3, 'kunakornthairestaurant', '', NULL, '43700.0000', '0.0000', '0.0000', '', '0.0000', '0.0000', 4, '3277.5000', '3277.5000', '0.0000', '46977.5000', 'pending', 9, NULL, NULL, NULL, 0, NULL, '3eb173fdf4dc77c93bb25a55d27105c29bd1c6cb2770ea2bb205b9cbb4c51c4c', 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 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

#
# TABLE STRUCTURE FOR: sma_returns
#

DROP TABLE IF EXISTS `sma_returns`;

CREATE TABLE `sma_returns` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `reference_no` varchar(55) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `customer` varchar(55) NOT NULL,
  `biller_id` int(11) NOT NULL,
  `biller` varchar(55) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `staff_note` varchar(1000) DEFAULT NULL,
  `total` decimal(25,4) NOT NULL,
  `product_discount` decimal(25,4) DEFAULT 0.0000,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `total_discount` decimal(25,4) DEFAULT 0.0000,
  `order_discount` decimal(25,4) DEFAULT 0.0000,
  `product_tax` decimal(25,4) DEFAULT 0.0000,
  `order_tax_id` int(11) DEFAULT NULL,
  `order_tax` decimal(25,4) DEFAULT 0.0000,
  `total_tax` decimal(25,4) DEFAULT 0.0000,
  `grand_total` decimal(25,4) NOT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `total_items` smallint(6) DEFAULT NULL,
  `paid` decimal(25,4) DEFAULT 0.0000,
  `surcharge` decimal(25,4) NOT NULL DEFAULT 0.0000,
  `attachment` varchar(55) DEFAULT NULL,
  `hash` varchar(255) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  `shipping` decimal(25,4) DEFAULT 0.0000,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

#
# 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=9083 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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 (1, 1, 40, 'PR36', 'Sago pearls', 'standard', NULL, '4500.0000', '4500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '22500.0000', '', '4500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2, 2, 4, 'PR4', 'Fried rice with shrimps/chicken/mixed seafood', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3, 2, 10, 'PR50', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4, 3, 56, 'PR56', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5, 4, 1, 'PR1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6, 4, 1, 'PR1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7, 5, 1, 'PR1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8, 6, 4, 'PR4', 'Fried rice with shrimps/chicken/mixed seafood', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9, 6, 60, 'PR60', 'Fried spring rolls (stuffed with chicken/shrimp/vegetables/cheese)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10, 6, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11, 7, 13, 'PR48', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12, 7, 8, 'PR51', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13, 7, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14, 7, 69, 'PR69', 'Fried fish with chili sauce', 'standard', NULL, '13000.0000', '13000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26000.0000', '', '13000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15, 7, 4, 'PR4', 'Fried rice with shrimps/chicken/mixed seafood', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16, 7, 13, 'PR48', 'Green tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17, 7, 72, 'PR76', 'Ichitan yellow', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18, 7, 71, 'PR75', 'Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19, 7, 52, 'PR30', 'Stir-fried mixed vegetables', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (20, 8, 60, 'PR60', 'Fried spring rolls (stuffed with chicken/shrimp/vegetables/cheese)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (21, 8, 4, 'PR4', 'Fried rice with shrimps/chicken/mixed seafood', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (22, 8, 52, 'PR30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (23, 9, 33, 'PR20', 'Chicken leg curry', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (24, 9, 39, 'PR23', 'Chicken, tofu and seaweed in clear soup', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (25, 9, 28, 'PR17', 'Green curry (chicken/beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (26, 10, 47, 'PR32', 'Seafood hot pan', 'standard', 0, '10900.0000', '10900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10900.0000', '', '10900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (27, 10, 43, 'PR34', 'Mixed set (small)', 'standard', 0, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (28, 11, 72, 'PR76', 'Ichitan yellow', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (29, 11, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (30, 12, 72, 'PR76', 'Ichitan yellow', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (31, 13, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (32, 13, 59, 'PR59', 'Spicy minced/chopped meat salad (beef/chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (33, 13, 7, 'PR6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (34, 13, 1, 'PR1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (35, 13, 4, 'PR4', 'Fried rice with shrimps/chicken/mixed seafood', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (36, 13, 56, 'PR56', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (37, 13, 77, 'PR79', 'Pad Thai (seafood,beef)', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (38, 13, 17, 'PR46', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (39, 13, 76, 'PR78', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (40, 14, 1, 'PR1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (41, 14, 71, 'PR75', 'Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (42, 14, 142, 'PR145', 'Maltina', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (43, 15, 51, 'PR29', 'Stir-fried chicken with ginger ', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (44, 16, 64, 'PR64', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (45, 17, 1, 'PR1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '3.0000', 1, '2427.2700', 3, '10%', '0', '0.0000', '26700.0000', '', '8900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (46, 17, 13, 'PR48', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (47, 17, 76, 'PR78', 'Takeaway', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (48, 18, 58, 'PR58', 'Spicy papaya salad (Thai style/fermented fish/mixed ingrediets)', 'standard', 0, '10000.0000', '10000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '30000.0000', '', '10000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (49, 18, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', 'standard', 0, '20000.0000', '20000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '60000.0000', '', '20000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (50, 18, 7, 'PR6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (51, 18, 76, 'PR78', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '9.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '500.0000', NULL, 1, 'QTY', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (52, 19, 58, 'PR58', 'Spicy papaya salad (Thai style/fermented fish/mixed ingrediets)', 'standard', 0, '10000.0000', '10000.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '50000.0000', '', '10000.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (53, 19, 9, 'PR7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '20.0000', 1, '0.0000', 1, '0', '0', '0.0000', '40000.0000', '', '2000.0000', NULL, 1, 'QTY', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (54, 19, 64, 'PR64', 'Fried chicken wings', 'standard', 0, '25000.0000', '25000.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '125000.0000', '', '25000.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (55, 19, 60, 'PR60', 'Fried spring rolls (stuffed with chicken/shrimp/vegetables/cheese)', 'standard', 0, '26700.0000', '26700.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '106800.0000', '', '26700.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (56, 19, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', 'standard', 0, '20000.0000', '20000.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '100000.0000', '', '20000.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (57, 19, 77, 'PR79', 'Pad Thai (seafood,beef)', 'standard', 0, '36000.0000', '36000.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '144000.0000', '', '36000.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (58, 19, 48, 'PR27', 'Stir-fried with holy basil (chicken/shrimp/beef/mixed meat) ', 'standard', 0, '18000.0000', '18000.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '90000.0000', '', '18000.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (59, 19, 154, 'PR157', 'Fried egg', 'standard', 0, '700.0000', '700.0000', '10.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '700.0000', NULL, 1, 'QTY', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (60, 20, 129, 'PR131', 'Heineken', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (61, 20, 142, 'PR145', 'Maltina', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (62, 21, 8, 'PR51', 'Singha beer', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (63, 21, 12, 'PR49', 'Chang beer', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (64, 22, 12, 'PR49', 'Chang beer', 'standard', NULL, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (65, 22, 19, 'PR45', 'Thai iced black coffee', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (66, 22, 72, 'PR76', 'Ichitan yellow', 'standard', NULL, '2000.0000', '2000.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '2000.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (67, 23, 71, 'PR75', 'Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (68, 23, 142, 'PR145', 'Maltina', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (69, 23, 12, 'PR49', 'Chang beer', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (70, 24, 164, 'PR167', 'Hero', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (71, 24, 136, 'PR139', 'Big Stout', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (72, 24, 142, 'PR145', 'Maltina', 'standard', 0, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (73, 24, 3, 'PR3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (74, 25, 1, 'PR1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (75, 25, 16, 'PR10', 'Stir-fried glass noodles (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (76, 25, 59, 'PR59', 'Spicy minced/chopped meat salad (beef/chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (77, 25, 76, 'PR78', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (78, 25, 62, 'PR62', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (79, 25, 142, 'PR145', 'Maltina', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (80, 25, 132, 'PR135', 'Star Raddler', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (81, 25, 147, 'PR150', 'Chivita Pack', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (82, 26, 136, 'PR139', 'Big Stout', 'standard', NULL, '3000.0000', '3000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '3000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (83, 26, 5, 'PR5', 'Tom yum fried rice', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (84, 26, 3, 'PR3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (85, 26, 8, 'PR51', 'Singha beer', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (86, 26, 12, 'PR49', 'Chang beer', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (87, 27, 142, 'PR145', 'Maltina', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (88, 28, 129, 'PR131', 'Heineken', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (89, 28, 4, 'PR4', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (90, 29, 129, 'PR131', 'Heineken', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (91, 30, 69, 'PR69', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (92, 30, 5, 'PR5', 'Tom yum fried rice', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (93, 30, 16, 'PR10', 'Stir-fried glass noodles (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (94, 31, 129, 'PR131', 'Heineken', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (95, 32, 58, 'PR58', 'Spicy papaya salad (Thai style/fermented fish/mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (96, 32, 10, 'PR50', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (97, 32, 47, 'PR32', 'Seafood hot pan', 'standard', 0, '10900.0000', '10900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10900.0000', '', '10900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (98, 32, 29, 'PR41', 'Chrysanthemum juice ', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (99, 32, 10, 'PR50', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (100, 32, 59, 'PR59', 'Spicy minced/chopped meat salad (beef/chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (101, 32, 56, 'PR56', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (102, 32, 3, 'PR3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (103, 32, 52, 'PR30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (104, 32, 5, 'PR5', 'Tom yum fried rice', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (105, 32, 77, 'PR79', 'Pad Thai (seafood,beef)', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (106, 32, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (107, 32, 72, 'PR76', 'Ichitan yellow', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (108, 32, 76, 'PR78', 'Takeaway', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (109, 33, 76, 'PR78', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (110, 34, 8, 'PR51', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (111, 34, 12, 'PR49', 'Chang beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (112, 34, 135, 'PR138', 'Desperado', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (113, 34, 11, 'PR8', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (114, 35, 69, 'PR69', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (115, 35, 53, 'PR53', 'Sweet and sour stir fry', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (116, 35, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (117, 35, 48, 'PR27', 'Stir-fried with holy basil (chicken/shrimp/beef/mixed meat) ', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (118, 35, 22, 'PR13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (119, 35, 28, 'PR17', 'Green curry (chicken/beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (120, 35, 7, 'PR6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (121, 35, 56, 'PR56', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (122, 35, 17, 'PR46', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '14000.0000', '', '3500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (123, 35, 72, 'PR76', 'Ichitan yellow', 'standard', 0, '2000.0000', '2000.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '2000.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (124, 35, 3, 'PR3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '23700.0000', '', '7900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (125, 35, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (126, 35, 44, 'PR25', 'Boiled chicken in fish sauce', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (127, 35, 13, 'PR48', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (128, 35, 33, 'PR20', 'Chicken leg curry', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (129, 35, 151, 'PR154', 'Fresh Juice Glass', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (130, 35, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '10.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '500.0000', NULL, 1, 'QTY', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (131, 35, 142, 'PR145', 'Maltina', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (132, 35, 12, 'PR49', 'Chang beer', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (133, 36, 72, 'PR76', 'Ichitan yellow', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (134, 36, 12, 'PR49', 'Chang beer', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (135, 36, 5, 'PR5', 'Tom yum fried rice', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (136, 36, 76, 'PR78', 'Takeaway', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (137, 37, 164, 'PR167', 'Hero', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (138, 37, 136, 'PR139', 'Big Stout', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (139, 38, 4, 'PR4', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (140, 39, 71, 'PR75', 'Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (141, 39, 89, 'PR91', 'Mastinellis', 'standard', NULL, '9000.0000', '9000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '9000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (142, 39, 165, 'PR168', 'Andre rose', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (143, 39, 149, 'PR152', 'Chi-exotic Pack', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (144, 39, 59, 'PR59', 'Spicy minced/chopped meat salad (beef/chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (145, 40, 12, 'PR49', 'Chang beer', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (146, 41, 3, 'PR3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (147, 42, 12, 'PR49', 'Chang beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (148, 42, 8, 'PR51', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (149, 43, 10, 'PR50', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (150, 43, 135, 'PR138', 'Desperado', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (151, 44, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (152, 45, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '-1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '-8900.0000', '', '8900.0000', 151, 1, 'QTY', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (153, 46, 17, 'PR46', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10500.0000', '', '3500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (154, 46, 13, 'PR48', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (155, 46, 12, 'PR49', 'Chang beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (156, 46, 72, 'PR76', 'Ichitan yellow', 'standard', 0, '2000.0000', '2000.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '2000.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (157, 47, 12, 'PR49', 'Chang beer', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (158, 47, 149, 'PR152', 'Chi-exotic Pack', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (159, 47, 4, 'PR4', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (160, 47, 59, 'PR59', 'Spicy minced/chopped meat salad (beef/chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (161, 48, 71, 'PR75', 'Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (162, 49, 48, 'PR27', 'Stir-fried with holy basil (chicken/shrimp/beef/mixed meat) ', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (163, 49, 77, 'PR79', 'Pad Thai (seafood,beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (164, 49, 58, 'PR58', 'Spicy papaya salad (Thai style/fermented fish/mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (165, 49, 65, 'PR65', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (166, 49, 53, 'PR53', 'Sweet and sour stir fry', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (167, 49, 53, 'PR53', 'Sweet and sour stir fry', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (168, 49, 55, 'PR55', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (169, 49, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26700.0000', '', '8900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (170, 49, 44, 'PR25', 'Boiled chicken in fish sauce', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (171, 49, 7, 'PR6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (172, 49, 17, 'PR46', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (173, 49, 13, 'PR48', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (174, 49, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (175, 50, 71, 'PR75', 'Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (176, 51, 48, 'PR27', 'Stir-fried with holy basil (chicken/shrimp/beef/mixed meat) ', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (177, 51, 7, 'PR6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (178, 51, 166, 'PR200', 'Nederburg', 'standard', 0, '16200.0000', '16200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '16200.0000', '', '16200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (179, 51, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (180, 51, 147, 'PR150', 'Chivita Pack', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (181, 52, 10, 'PR50', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (182, 53, 58, 'PR58', 'Spicy papaya salad (Thai style/fermented fish/mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (183, 54, 48, 'PR27', 'Stir-fried with holy basil (chicken/shrimp/beef/mixed meat) ', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (184, 54, 77, 'PR79', 'Pad Thai (seafood,beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (185, 54, 58, 'PR58', 'Spicy papaya salad (Thai style/fermented fish/mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (186, 54, 65, 'PR65', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (187, 54, 53, 'PR53', 'Sweet and sour stir fry', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (188, 54, 53, 'PR53', 'Sweet and sour stir fry', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (189, 54, 55, 'PR55', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (190, 54, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (191, 54, 44, 'PR25', 'Boiled chicken in fish sauce', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (192, 54, 7, 'PR6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (193, 54, 17, 'PR46', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (194, 54, 13, 'PR48', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (195, 54, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (196, 55, 59, 'PR59', 'Spicy minced/chopped meat salad (beef/chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (197, 56, 48, 'PR27', 'Stir-fried with holy basil (chicken/shrimp/beef/mixed meat) ', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (198, 56, 154, 'PR157', 'Fried egg', 'standard', 0, '700.0000', '700.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '700.0000', '', '700.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (199, 56, 76, 'PR78', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (200, 57, 72, 'PR76', 'Ichitan yellow', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (201, 58, 1, 'PR1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (202, 58, 3, 'PR3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (203, 58, 60, 'PR60', 'Fried spring rolls (stuffed with chicken/shrimp/vegetables/cheese)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (204, 58, 13, 'PR48', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (205, 58, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (206, 59, 4, 'PR4', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (207, 59, 167, 'PR201', 'MOJITO', 'standard', 0, '6000.0000', '6000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '12000.0000', '', '6000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (208, 59, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (209, 59, 168, 'PR202', 'LONG  ISLAND', 'standard', 0, '8000.0000', '8000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '24000.0000', '', '8000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (210, 60, 169, 'PR205', 'TIEGLILU', 'standard', NULL, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (211, 60, 170, 'PR206', 'CHIMAN', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (212, 60, 71, 'PR75', 'Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (213, 61, 58, 'PR58', 'Spicy papaya salad (Thai style/fermented fish/mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (214, 61, 51, 'PR29', 'Stir-fried chicken with ginger ', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (215, 61, 76, 'PR78', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (216, 62, 58, 'PR58', 'Spicy papaya salad (Thai style/fermented fish/mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (217, 62, 26, 'PR16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (218, 62, 171, 'PR170', 'Spicy beef soup', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (219, 62, 59, 'PR59', 'Spicy minced/chopped meat salad (beef/chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (220, 62, 68, 'PR68', 'Fried fish with three flavors sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (221, 62, 7, 'PR6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (222, 62, 9, 'PR7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (223, 62, 29, 'PR41', 'Chrysanthemum juice ', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (224, 62, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (225, 63, 71, 'PR75', 'Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (226, 64, 56, 'PR56', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (227, 64, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (228, 64, 48, 'PR27', 'Stir-fried with holy basil (chicken/shrimp/beef/mixed meat) ', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (229, 65, 28, 'PR17', 'Green curry (chicken/beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (230, 65, 59, 'PR59', 'Spicy minced/chopped meat salad (beef/chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (231, 65, 58, 'PR58', 'Spicy papaya salad (Thai style/fermented fish/mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (232, 65, 66, 'PR66', 'Deep fried chicken rolls (8 pcs)', 'standard', 0, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (233, 65, 62, 'PR62', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (234, 65, 48, 'PR27', 'Stir-fried with holy basil (chicken/shrimp/beef/mixed meat) ', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (235, 65, 15, 'PR47', 'Milk tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (236, 65, 7, 'PR6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '1500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (237, 65, 72, 'PR76', 'Ichitan yellow', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (238, 65, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (239, 65, 178, 'PR216', 'STRAWBERRY JUICE', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (240, 66, 11, 'PR8', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (241, 66, 77, 'PR79', 'Pad Thai (seafood,beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (242, 67, 55, 'PR55', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (243, 67, 62, 'PR62', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (244, 67, 63, 'PR63', 'Fried squid', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (245, 67, 141, 'PR144', 'Fried rice with shrimps, seafood & beef', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (246, 67, 7, 'PR6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (247, 67, 9, 'PR7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (248, 67, 57, 'PR57', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (249, 67, 58, 'PR58', 'Spicy papaya salad (Thai style/fermented fish/mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (250, 67, 59, 'PR59', 'Spicy minced/chopped meat salad (beef/chicken)', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (251, 67, 32, 'PR19', 'Panang curry (chicken/beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (252, 67, 35, 'PR21', 'Massaman Curry (chicken/beef/lamb)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (253, 67, 39, 'PR23', 'Chicken, tofu and seaweed in clear soup', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (254, 67, 42, 'PR24', 'Tom Yum (shrimp/seafood) (clear soup/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (255, 67, 46, 'PR26', 'Stewed eggs', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (256, 67, 40, 'PR36', 'Sago pearls', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (257, 67, 37, 'PR37', 'Glutinous rice balls', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (258, 67, 76, 'PR78', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '24.0000', 1, '0.0000', 1, '0', '0', '0.0000', '12000.0000', '', '500.0000', NULL, 1, 'QTY', '24.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (259, 67, 15, 'PR47', 'Milk tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (260, 67, 19, 'PR45', 'Thai iced black coffee', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (261, 67, 31, 'PR40', 'Longan juice ', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (262, 68, 113, 'PR115', 'Gordons gin small', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (263, 69, 141, 'PR144', 'Fried rice with shrimps, seafood & beef', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (264, 69, 57, 'PR57', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (265, 69, 76, 'PR78', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (266, 70, 40, 'PR36', 'Sago pearls', 'standard', NULL, '4500.0000', '4500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13500.0000', '', '4500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (267, 70, 37, 'PR37', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (268, 71, 48, 'PR27', 'Stir-fried with holy basil (chicken/shrimp/beef/mixed meat) ', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (269, 71, 58, 'PR58', 'Spicy papaya salad (Thai style/fermented fish/mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (270, 71, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (271, 72, 292, '63', 'Milk tea', 'standard', NULL, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (272, 73, 402, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (273, 73, 476, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (274, 73, 603, '152', 'Takeaway', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (275, 74, 3, 'PR3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (276, 74, 56, 'PR56', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (277, 74, 24, 'PR43', 'Bael fruit juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (278, 74, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (279, 74, 40, 'PR36', 'Sago pearls', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (280, 74, 729, '56', 'Longan juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (281, 74, 624, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (282, 75, 707, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (283, 76, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (284, 76, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (285, 76, 847, 'PR218', 'MILKCHECK', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (286, 76, 684, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (287, 77, 754, '80', 'Heineken', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (288, 77, 624, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (289, 77, 760, '86', 'Desperado', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (290, 77, 631, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (291, 77, 720, '48', 'Beef hot pan', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (292, 77, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (293, 78, 625, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (294, 78, 722, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '30000.0000', '', '15000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (295, 78, 786, '112', 'Maltina', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (296, 78, 845, 'PR216', 'GUINNESS BIG', 'standard', 0, '3500.0000', '3500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '21000.0000', '', '3500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (297, 78, 846, 'PR217', 'COCACOLA', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (298, 78, 788, '114', 'Fanta', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (299, 78, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '7.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '500.0000', NULL, 1, 'QTY', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (300, 78, 625, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '8.0000', 1, '0.0000', 1, '0', '0', '0.0000', '63200.0000', '', '7900.0000', NULL, 1, 'QTY', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (301, 78, 730, '57', 'Chrysanthemum juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (302, 79, 31, 'PR40', 'Longan juice ', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (303, 79, 71, 'PR75', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (304, 79, 294, '65', 'Chang beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (305, 79, 625, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (306, 79, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (307, 79, 625, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (308, 80, 712, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (309, 80, 713, '41', 'Fried squid', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (310, 80, 737, '64', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (311, 80, 723, '50b', 'Mixed set (small)', 'standard', 0, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (312, 81, 848, 'PR219', 'HOT TEA', 'standard', 0, '4000.0000', '4000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '4000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (313, 82, 625, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (314, 82, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (315, 83, 789, '115', 'Sprite', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (316, 84, 692, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (317, 84, 712, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (318, 84, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (319, 85, 683, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (320, 85, 715, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (321, 85, 650, '12', 'Baked shrimp with glass noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (322, 85, 698, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (323, 85, 704, '37b', 'Spicy minced (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (324, 85, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (325, 85, 691, '29', 'Stir-fried chicken with ginger', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (326, 85, 631, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (327, 85, 632, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (328, 85, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '12.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '500.0000', NULL, 1, 'QTY', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (329, 85, 849, 'PR999', 'FISH SAUCE CHILI', 'standard', 0, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (330, 85, 850, 'PR1000', 'SEAFOOD SAUCE', 'standard', 0, '4000.0000', '4000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '4000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (331, 86, 727, '54', 'Crispy red ruby', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (332, 87, 655, '15a', 'Noodles (chicken)', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (333, 87, 735, '62', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (334, 87, 683, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (335, 87, 626, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (336, 87, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (337, 87, 697, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (338, 87, 786, '112', 'Maltina', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (339, 88, 624, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (340, 88, 626, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (341, 88, 754, '80', 'Heineken', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (342, 88, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (343, 88, 789, '115', 'Sprite', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (344, 88, 757, '83', 'Star Raddler', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (345, 88, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (346, 89, 754, '80', 'Heineken', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (347, 90, 684, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (348, 90, 754, '80', 'Heineken', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (349, 90, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '12000.0000', '', '3000.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (350, 90, 820, '146', 'WATERMELON  JUICE', 'standard', 0, '3000.0000', '3000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '3000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (351, 90, 722, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (352, 90, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (353, 90, 737, '64', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (354, 90, 745, '71', 'Origin Bitters Small', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (355, 91, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '2.0000', 1, '1618.1800', 3, '10%', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (356, 91, 626, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (357, 92, 683, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (358, 92, 676, '23', 'Chicken, tofu and seaweed in clear soup', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (359, 92, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (360, 92, 742, '68', 'Regency', 'standard', 0, '65000.0000', '65000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '130000.0000', '', '65000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (361, 92, 795, '121', 'Fresh Juice Glass', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (362, 92, 741, '67', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '14000.0000', '', '3500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (363, 92, 736, '63', 'Milk tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (364, 92, 646, '11a', 'Noodles in gravy sauce (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (365, 92, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (366, 93, 692, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (367, 93, 627, '4c', 'Fried rice with seafood', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (368, 93, 624, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (369, 93, 823, '149', 'Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (370, 94, 741, '67', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (371, 94, 722, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (372, 94, 646, '11a', 'Noodles in gravy sauce (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (373, 94, 736, '63', 'Milk tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (374, 95, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (375, 95, 822, '148', 'STRAWBERRY JUICE', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (376, 95, 742, '68', 'Regency', 'standard', 0, '65000.0000', '65000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '65000.0000', '', '65000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (377, 95, 790, '116', 'Tonic Soda', 'standard', 0, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (378, 95, 846, 'PR217', 'COCACOLA', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (379, 95, 781, '107', 'Red Bull', 'standard', 0, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (380, 95, 707, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (381, 95, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (382, 95, 697, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (383, 96, 738, '65', 'Chang beer (bottle)', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (384, 96, 745, '71', 'Origin Bitters Small', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (385, 96, 626, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (386, 96, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (387, 96, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (388, 97, 703, '37a', 'Spicy minced (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (389, 97, 632, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (390, 97, 736, '63', 'Milk tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (391, 97, 851, 'PR220', 'SING BEER CAN', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (392, 98, 683, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (393, 98, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (394, 99, 824, '150', 'Ichitan yellow', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (395, 99, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (396, 99, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (397, 99, 658, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (398, 99, 699, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (399, 99, 711, '39', 'Hat Yai-style fried chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (400, 99, 695, '31', 'Sweet and sour stir fry', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (401, 100, 736, '63', 'Milk tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (402, 100, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (403, 100, 683, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (404, 100, 646, '11a', 'Noodles in gravy sauce (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (405, 101, 790, '116', 'Tonic Soda', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (406, 101, 781, '107', 'Red Bull', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (407, 101, 790, '116', 'Tonic Soda', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (408, 102, 684, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (409, 102, 852, '4f', 'Fried rice with vegetable', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (410, 102, 707, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (411, 102, 848, 'PR219', 'HOT TEA', 'standard', 0, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (412, 103, 786, '112', 'Maltina', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (413, 104, 659, '17a', 'Green curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (414, 104, 826, '152', 'Takeaway', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (415, 105, 651, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (416, 105, 848, 'PR219', 'HOT TEA', 'standard', 0, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (417, 105, 816, '142', 'CHAPMAN', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (418, 105, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (419, 106, 848, 'PR219', 'HOT TEA', 'standard', 0, '4000.0000', '4000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '4000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (420, 106, 722, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (421, 107, 738, '65', 'Chang beer (bottle)', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (422, 107, 741, '67', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (423, 107, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (424, 108, 691, '29', 'Stir-fried chicken with ginger', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (425, 108, 696, '32', 'Fried boiled egg with tamarind sauce', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (426, 108, 675, '22', 'Sour soup with fish', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (427, 108, 681, '25', 'Boiled chicken in fish sauce', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (428, 108, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (429, 108, 736, '63', 'Milk tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (430, 109, 738, '65', 'Chang beer (bottle)', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (431, 109, 741, '67', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (432, 109, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (433, 110, 813, '139', 'LONG  ISLAND', 'standard', NULL, '8000.0000', '8000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '16000.0000', '', '8000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (434, 111, 647, '11b', 'Noodles in gravy sauce (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (435, 111, 823, '149', 'Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (436, 112, 754, '80', 'Heineken', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (437, 113, 692, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (438, 113, 719, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (439, 113, 631, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (440, 113, 741, '67', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (441, 114, 625, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (442, 114, 692, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (443, 115, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (444, 115, 624, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (445, 116, 624, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (446, 116, 630, '5', 'Tom yum fried rice', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (447, 117, 697, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (448, 117, 631, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (449, 117, 824, '150', 'Ichitan yellow', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (450, 117, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (451, 118, 718, '46', 'Fried fish with three flavors sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (452, 118, 684, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (453, 118, 741, '67', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (454, 118, 734, '61', 'Thai iced black coffee', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (455, 118, 735, '62', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (456, 118, 633, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (457, 118, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (458, 118, 629, '4e', 'Fried rice mixed', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (459, 118, 730, '57', 'Chrysanthemum juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (460, 119, 631, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (461, 119, 719, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (462, 119, 677, '24', 'Tom Yum (shrimp/clear soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (463, 119, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (464, 120, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (465, 120, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (466, 120, 625, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (467, 121, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '2.0000', 1, '1618.1800', 3, '10%', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (468, 121, 624, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (469, 121, 651, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '29700.0000', '', '9900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (470, 121, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (471, 121, 736, '63', 'Milk tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (472, 121, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (473, 121, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (474, 122, 651, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (475, 122, 634, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (476, 122, 677, '24', 'Tom Yum (shrimp/clear soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (477, 122, 741, '67', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (478, 122, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (479, 122, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (480, 122, 673, '21b', 'Massaman Curry (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (481, 122, 631, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (482, 122, 739, '65b', 'Chang beer (can)', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (483, 122, 851, 'PR220', 'SING BEER CAN', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (484, 122, 740, '66', 'Leo beer', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (485, 122, 742, '68', 'Regency', 'standard', NULL, '65000.0000', '65000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '65000.0000', '', '65000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (486, 123, 823, '149', 'Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (487, 124, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (488, 124, 631, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (489, 124, 678, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (490, 124, 716, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (491, 124, 704, '37b', 'Spicy minced (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (492, 124, 737, '64', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (493, 125, 783, '109', 'Budwiser', 'standard', 0, '3000.0000', '3000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '3000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (494, 126, 816, '142', 'CHAPMAN', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (495, 127, 633, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (496, 127, 630, '5', 'Tom yum fried rice', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (497, 127, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (498, 127, 740, '66', 'Leo beer', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (499, 128, 738, '65', 'Chang beer (bottle)', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (500, 128, 816, '142', 'CHAPMAN', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (501, 128, 651, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (502, 128, 656, '15b', 'Noodles (beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (503, 128, 655, '15a', 'Noodles (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (504, 128, 720, '48', 'Beef hot pan', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (505, 128, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (506, 128, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (507, 129, 845, 'PR216', 'GUINNESS BIG', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (508, 129, 719, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (509, 129, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (510, 130, 719, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (511, 130, 707, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (512, 130, 683, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (513, 130, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (514, 130, 631, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (515, 130, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (516, 130, 853, 'PR221', 'REGENCY SHOT', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (517, 130, 845, 'PR216', 'GUINNESS BIG', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (518, 131, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (519, 131, 697, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (520, 131, 789, '115', 'Sprite', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (521, 131, 816, '142', 'CHAPMAN', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (522, 131, 634, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (523, 131, 823, '149', 'Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (524, 131, 826, '152', 'Takeaway', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (525, 132, 735, '62', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (526, 133, 816, '142', 'CHAPMAN', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (527, 133, 845, 'PR216', 'GUINNESS BIG', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (528, 134, 698, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (529, 134, 854, 'PR223', ' SPAGHETTI  WHIT  SPRICY  MIXED', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (530, 134, 625, '4a', 'Fried rice with chicken', 'standard', 0, '9400.0000', '9400.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9400.0000', '', '9400.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (531, 134, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (532, 134, 812, '138', 'MOJITO', 'standard', 0, '6000.0000', '6000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '6000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (533, 134, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (534, 134, 854, 'PR223', ' SPAGHETTI  WHIT  SPRICY  MIXED', 'standard', 0, '9900.0000', '9900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '29700.0000', '', '9900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (535, 135, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '2.0000', 1, '1618.1800', 3, '10%', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (536, 135, 658, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (537, 135, 855, 'PR207', 'LADY  CHAPMAN', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (538, 135, 816, '142', 'CHAPMAN', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (539, 135, 823, '149', 'Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (540, 136, 741, '67', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (541, 136, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (542, 136, 624, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (543, 136, 734, '61', 'Thai iced black coffee', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (544, 136, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (545, 136, 651, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (546, 137, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (547, 137, 754, '80', 'Heineken', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (548, 138, 722, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (549, 138, 741, '67', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (550, 138, 737, '64', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (551, 139, 629, '4e', 'Fried rice mixed', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (552, 139, 655, '15a', 'Noodles (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (553, 139, 781, '107', 'Red Bull', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (554, 140, 729, '56', 'Longan juice', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (555, 140, 629, '4e', 'Fried rice mixed', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (556, 140, 626, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (557, 140, 677, '24', 'Tom Yum (shrimp/clear soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (558, 140, 719, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (559, 140, 624, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '23700.0000', '', '7900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (560, 140, 650, '12', 'Baked shrimp with glass noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (561, 140, 630, '5', 'Tom yum fried rice', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (562, 140, 735, '62', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '14000.0000', '', '3500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (563, 140, 631, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (564, 140, 692, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (565, 140, 651, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (566, 140, 623, '2', 'Lamb Biryani', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (567, 140, 719, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26000.0000', '', '13000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (568, 140, 735, '62', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10500.0000', '', '3500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (569, 140, 737, '64', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10500.0000', '', '3500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (570, 140, 684, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (571, 140, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (572, 140, 734, '61', 'Thai iced black coffee', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (573, 140, 732, '59', 'Bael fruit juice', 'standard', 0, '3500.0000', '3500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10500.0000', '', '3500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (574, 140, 722, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '30000.0000', '', '15000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (575, 141, 679, '24c', 'Tom Yum (seafood/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26700.0000', '', '8900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (576, 142, 728, '55', 'Cendol in coconut milk', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (577, 142, 624, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (578, 142, 659, '17a', 'Green curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (579, 142, 730, '57', 'Chrysanthemum juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (580, 142, 631, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (581, 142, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (582, 142, 658, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (583, 142, 658, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (584, 143, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '12.0000', 1, '0.0000', 1, '0', '0', '0.0000', '36000.0000', '', '3000.0000', NULL, 1, 'QTY', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (585, 143, 787, '113', 'Coke', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (586, 143, 844, '170', 'Ichitan orange', 'standard', 0, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (587, 144, 722, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (588, 145, 711, '39', 'Hat Yai-style fried chicken', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (589, 145, 633, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (590, 145, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (591, 145, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (592, 145, 632, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '2000.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (593, 145, 707, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (594, 145, 718, '46', 'Fried fish with three flavors sauce', 'standard', 0, '20000.0000', '20000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20000.0000', '', '20000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (595, 145, 824, '150', 'Ichitan yellow', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (596, 146, 824, '150', 'Ichitan yellow', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (597, 147, 708, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (598, 147, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (599, 148, 646, '11a', 'Noodles in gravy sauce (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (600, 148, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (601, 148, 668, '19b', 'Panang curry (beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (602, 148, 635, '8c', 'Pad Thai (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (603, 148, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (604, 148, 658, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (605, 149, 737, '64', 'Green tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (606, 149, 729, '56', 'Longan juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (607, 149, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (608, 150, 816, '142', 'CHAPMAN', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (609, 151, 703, '37a', 'Spicy minced (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (610, 151, 719, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (611, 151, 692, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (612, 151, 697, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (613, 151, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (614, 151, 731, '58', 'Roselle juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (615, 152, 629, '4e', 'Fried rice mixed', 'standard', 0, '10900.0000', '10900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10900.0000', '', '10900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (616, 152, 735, '62', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (617, 153, 790, '116', 'Tonic Soda', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (618, 153, 846, 'PR217', 'COCACOLA', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (619, 153, 781, '107', 'Red Bull', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (620, 154, 754, '80', 'Heineken', 'standard', 0, '3000.0000', '3000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '3000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (621, 154, 760, '86', 'Desperado', 'standard', 0, '3000.0000', '3000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '3000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (622, 155, 848, 'PR219', 'HOT TEA', 'standard', 0, '4000.0000', '4000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '4000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (623, 155, 722, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (624, 156, 658, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (625, 156, 700, '35b', 'Spicy papaya salad (fermented fish)', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (626, 156, 729, '56', 'Longan juice', 'standard', NULL, '3500.0000', '3500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10500.0000', '', '3500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (627, 156, 726, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (628, 157, 678, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (629, 157, 672, '21a', 'Massaman Curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (630, 157, 659, '17a', 'Green curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (631, 157, 684, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (632, 157, 631, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (633, 157, 738, '65', 'Chang beer (bottle)', 'standard', 0, '4500.0000', '4500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13500.0000', '', '4500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (634, 157, 734, '61', 'Thai iced black coffee', 'standard', NULL, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (635, 158, 648, '11c', 'Noodles in gravy sauce (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (636, 158, 624, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (637, 158, 826, '152', 'Takeaway', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (638, 159, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (639, 159, 734, '61', 'Thai iced black coffee', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (640, 160, 624, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (641, 160, 692, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (642, 160, 735, '62', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (643, 160, 848, 'PR219', 'HOT TEA', 'standard', 0, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (644, 160, 634, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (645, 160, 707, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (646, 160, 680, '24d', 'Tom Yum (seafood/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (647, 160, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (648, 160, 741, '67', 'Singha beer', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (649, 160, 740, '66', 'Leo beer', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (650, 160, 738, '65', 'Chang beer (bottle)', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (651, 160, 715, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (652, 161, 735, '62', 'Thai tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (653, 161, 731, '58', 'Roselle juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (654, 162, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (655, 162, 651, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (656, 162, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (657, 163, 735, '62', 'Thai tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (658, 163, 741, '67', 'Singha beer', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (659, 163, 681, '25', 'Boiled chicken in fish sauce', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (660, 163, 719, '47', 'Fried fish with chili sauce', 'standard', NULL, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (661, 163, 643, '10b', 'Stir-fried glass noodles (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (662, 164, 699, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (663, 164, 651, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (664, 164, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (680, 166, 722, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (681, 166, 719, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (682, 166, 754, '80', 'Heineken', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (683, 166, 791, '117', 'Chivita Pack', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (690, 168, 719, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (691, 168, 759, '85', 'Legend', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (692, 168, 748, '74', 'Baron Romero', 'standard', 0, '7000.0000', '7000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '7000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (693, 169, 719, '47', 'Fried fish with chili sauce', 'standard', NULL, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (694, 169, 779, '105', 'Four Cousins', 'standard', NULL, '6300.0000', '6300.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6300.0000', '', '6300.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (695, 169, 834, '160', '4th Street White', 'standard', NULL, '8000.0000', '8000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '8000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (696, 170, 826, '152', 'Takeaway', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (706, 172, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (707, 172, 816, '142', 'CHAPMAN', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (713, 173, 624, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (714, 173, 683, '27a', 'Stir-fried with holy basil (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (715, 173, 826, '152', 'Takeaway', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (716, 174, 719, '47', 'Fried fish with chili sauce', 'standard', NULL, '13000.0000', '13000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26000.0000', '', '13000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (717, 174, 626, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (718, 174, 626, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '35600.0000', '', '8900.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (719, 174, 677, '24', 'Tom Yum (shrimp/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '35600.0000', '', '8900.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (720, 175, 754, '80', 'Heineken', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (721, 175, 783, '109', 'Budwiser', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (722, 176, 622, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '2.0000', 1, '1618.1800', 3, '10%', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (723, 176, 702, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (724, 176, 753, '79', 'Andre', 'standard', 0, '12000.0000', '12000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '24000.0000', '', '12000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (725, 176, 821, '147', 'ORANGE  JUICE', 'standard', 0, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (726, 176, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (727, 176, 711, '39', 'Hat Yai-style fried chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (728, 176, 791, '117', 'Chivita Pack', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (729, 177, 702, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (730, 178, 692, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (731, 178, 719, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (732, 178, 823, '149', 'Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (733, 178, 787, '113', 'Coke', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (734, 179, 719, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (735, 179, 643, '10b', 'Stir-fried glass noodles (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (736, 180, 786, '112', 'Maltina', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (737, 181, 786, '112', 'Maltina', 'standard', NULL, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (741, 183, 856, '1', 'Chicken Biryani', 'standard', 0, '32363.6400', '35600.0000', '2.0000', 1, '6472.7200', 3, '10%', '0', '0.0000', '71200.0000', '', '35600.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (742, 183, 890, '15b', 'Noodles (beef)', 'standard', 0, '39600.0000', '39600.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '79200.0000', '', '39600.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (743, 183, 914, '24d', 'Tom Yum (seafood/creamy soup)', 'standard', 0, '35600.0000', '35600.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '71200.0000', '', '35600.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (744, 183, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '35600.0000', '35600.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '71200.0000', '', '35600.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (745, 183, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '31600.0000', '31600.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '63200.0000', '', '31600.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (746, 183, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '39600.0000', '39600.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '79200.0000', '', '39600.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (747, 183, 937, '37a', 'Spicy minced (beef)', 'standard', 0, '39600.0000', '39600.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '79200.0000', '', '39600.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (748, 183, 884, '12', 'Baked shrimp with glass noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (749, 183, 906, '21a', 'Massaman Curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (750, 183, 1076, '149', 'Strawberry Milkshake', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (751, 183, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '14000.0000', '', '3500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (752, 183, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '8.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '500.0000', NULL, 1, 'QTY', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (753, 184, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (754, 184, 892, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (755, 184, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (756, 184, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (757, 184, 1081, '154', 'Chrysanthemum Juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (758, 184, 1080, '153', 'Longan Juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (759, 184, 960, '53', 'Glutinous rice balls', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (760, 184, 1087, '160', 'Milk Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (761, 185, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (762, 185, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (763, 185, 1054, '127', 'Team Soda Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (764, 185, 1110, 'PR171', 'HOT COFFEE', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (765, 186, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (766, 186, 937, '37a', 'Spicy minced (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (767, 186, 1057, '130', 'Redbull', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (768, 186, 1050, '123', 'Singha Beer', 'standard', 0, '1800.0000', '1800.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3600.0000', '', '1800.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (769, 187, 1091, '164', 'Water Melon Juice', 'standard', 0, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (770, 188, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (771, 188, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (772, 188, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (773, 188, 1092, '165', 'Strawberry Juice', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (774, 188, 1094, '167', 'Chapman', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (775, 188, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (776, 189, 1064, '137', 'Mojito', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (777, 190, 945, '39', 'Hat Yai-style fried chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (778, 190, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '2000.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (779, 190, 937, '37a', 'Spicy minced (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (780, 190, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (781, 190, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (782, 190, 890, '15b', 'Noodles (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (783, 190, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (784, 191, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (785, 192, 863, '4e', 'Fried rice mixed', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (786, 193, 940, '37d', 'Spicy chopped meat salad (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (787, 193, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (788, 193, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (789, 194, 911, '24', 'Tom Yum (shrimp/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (790, 194, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (791, 194, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (792, 194, 1047, '120', 'Chang Beer', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (793, 195, 892, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (794, 195, 931, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (795, 195, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (796, 195, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (797, 195, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (798, 196, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (799, 196, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (800, 196, 945, '39', 'Hat Yai-style fried chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (801, 196, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (802, 196, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '20000.0000', '20000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20000.0000', '', '20000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (803, 196, 1010, '92', 'Regency Vsop', 'standard', 0, '85000.0000', '85000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '85000.0000', '', '85000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (804, 196, 1054, '127', 'Team Soda Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (805, 196, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (806, 196, 1057, '130', 'Redbull', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (807, 196, 1112, 'PR173', 'Ichitan orange', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (813, 198, 864, '5', 'Tom yum fried rice', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (814, 198, 884, '12', 'Baked shrimp with glass noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (815, 198, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (816, 198, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (817, 198, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (818, 198, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (840, 204, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '4.0000', 1, '3236.3600', 3, '10%', '0', '0.0000', '35600.0000', '', '8900.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (841, 204, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (842, 204, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (843, 204, 1074, '147', 'Vanila Milkshake', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (881, 214, 886, '14', 'Rice noodles with fish curry', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (882, 214, 1113, 'PR1000', 'BRAISED BEEF STEW', 'standard', 0, '10400.0000', '10400.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10400.0000', '', '10400.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (883, 214, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (884, 214, 1080, '153', 'Longan Juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (885, 214, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (886, 214, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (887, 215, 960, '53', 'Glutinous rice balls', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (888, 215, 882, '11c', 'Noodles in gravy sauce (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (889, 215, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (890, 215, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (891, 215, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (892, 215, 1080, '153', 'Longan Juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (893, 215, 1081, '154', 'Chrysanthemum Juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (894, 215, 1088, '161', 'Green Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (895, 215, 1085, '158', 'Thai Iced Black Coffee', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (896, 215, 1083, '156', 'Bael Fruit Juice', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (897, 216, 882, '11c', 'Noodles in gravy sauce (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (898, 216, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (899, 217, 1055, '128', 'Maltina', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (900, 218, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (901, 218, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (902, 218, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (903, 219, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (904, 219, 876, '10a', 'Stir-fried glass noodles (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (905, 219, 957, '50b', 'Mixed set (small)', 'standard', 0, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (906, 219, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (907, 219, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (908, 219, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (909, 219, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (910, 219, 1047, '120', 'Chang Beer', 'standard', 0, '1800.0000', '1800.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (911, 220, 1092, '165', 'Strawberry Juice', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (912, 220, 955, '49', 'Seafood hot pan', 'standard', 0, '10900.0000', '10900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10900.0000', '', '10900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (913, 220, 877, '10b', 'Stir-fried glass noodles (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (914, 220, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (915, 220, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (932, 224, 1047, '120', 'Chang Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (933, 224, 1074, '147', 'Vanila Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (934, 224, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (935, 224, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (936, 224, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (937, 224, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (938, 224, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (939, 225, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (940, 226, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (945, 227, 1037, '110', 'Desperado', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (950, 229, 877, '10b', 'Stir-fried glass noodles (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (951, 229, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (952, 229, 887, '14b', 'Rice noodles with coconut milk curry', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (953, 229, 1036, '109', 'Guiness Stout (Big)', 'standard', 0, '2700.0000', '2700.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2700.0000', '', '2700.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (965, 233, 1016, '96', 'Gordon Gin Small', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (966, 233, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (975, 237, 1047, '120', 'Chang Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (976, 238, 1080, '153', 'Longan Juice', 'standard', NULL, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (977, 238, 914, '24d', 'Tom Yum (seafood/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (978, 238, 926, '30', 'Stir-fried mixed vegetables', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (979, 238, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (980, 238, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (981, 238, 890, '15b', 'Noodles (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (982, 238, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (983, 238, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '9.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '500.0000', NULL, 1, 'QTY', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (984, 239, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (985, 239, 1114, 'PR1001', 'Fried egg', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (986, 239, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (987, 240, 882, '11c', 'Noodles in gravy sauce (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (988, 240, 890, '15b', 'Noodles (beef)', 'standard', NULL, '9900.0000', '9900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '29700.0000', '', '9900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (989, 240, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (990, 241, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (991, 241, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (992, 241, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (993, 241, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (994, 241, 1054, '127', 'Team Soda Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (995, 242, 863, '4e', 'Fried rice mixed', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (996, 242, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (997, 242, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (998, 242, 1002, '84', 'Martinellis', 'standard', 0, '9000.0000', '9000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '9000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (999, 242, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1000, 242, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1001, 243, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1002, 243, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1003, 243, 1088, '161', 'Green Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1004, 244, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1005, 244, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1006, 244, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1007, 244, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1008, 244, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1009, 244, 1050, '123', 'Singha Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1010, 245, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1011, 245, 887, '14b', 'Rice noodles with coconut milk curry', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1012, 245, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1013, 246, 953, '47', 'Fried fish with chili sauce', 'standard', NULL, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1014, 246, 1092, '165', 'Strawberry Juice', 'standard', NULL, '5000.0000', '5000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '5000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1015, 247, 937, '37a', 'Spicy minced (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1016, 247, 1115, '995', 'bottle singha beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1017, 247, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1018, 247, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1019, 247, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1020, 247, 885, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1021, 248, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1022, 249, 1090, '163', 'Pineapple Juice', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1023, 249, 1042, '115', 'Origin Bitters (75)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1024, 250, 901, '19a', 'Panang curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1025, 250, 869, '8c', 'Pad Thai (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1026, 250, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1027, 250, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1028, 250, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1029, 250, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1030, 250, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1031, 251, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1032, 251, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1033, 251, 890, '15b', 'Noodles (beef)', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1034, 251, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1035, 252, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1036, 252, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1037, 252, 1076, '149', 'Strawberry Milkshake', 'standard', 0, '5000.0000', '5000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '5000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1038, 252, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1039, 252, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1040, 253, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1041, 253, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1042, 253, 1047, '120', 'Chang Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1043, 253, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1044, 253, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '18000.0000', '', '4500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1045, 253, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1046, 253, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1049, 255, 1016, '96', 'Gordon Gin Small', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1050, 255, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1051, 256, 1049, '122', 'Leo Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1052, 257, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1053, 257, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1054, 257, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1055, 257, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1056, 257, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1057, 257, 887, '14b', 'Rice noodles with coconut milk curry', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1058, 257, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1059, 258, 1115, '995', 'bottle singha beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1060, 258, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1061, 258, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1062, 258, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1063, 258, 937, '37a', 'Spicy minced (beef)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1064, 258, 911, '24', 'Tom Yum (shrimp/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1065, 259, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1066, 259, 925, '29', 'Stir-fried chicken with ginger', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1067, 259, 929, '31', 'Sweet and sour stir fry', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1068, 259, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1072, 260, 1080, '153', 'Longan Juice', 'standard', NULL, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1073, 260, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1074, 260, 890, '15b', 'Noodles (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1075, 261, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1076, 261, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1077, 261, 953, '47', 'Fried fish with chili sauce', 'standard', NULL, '13000.0000', '13000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26000.0000', '', '13000.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1078, 261, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1084, 262, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1085, 263, 1042, '115', 'Origin Bitters (75)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1086, 263, 1055, '128', 'Maltina', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1091, 266, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1092, 266, 861, '4c', 'Fried rice with seafood', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1093, 266, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1094, 267, 1047, '120', 'Chang Beer', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1095, 268, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1096, 268, 946, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1097, 268, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1098, 268, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1099, 268, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1100, 268, 887, '14b', 'Rice noodles with coconut milk curry', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1101, 268, 1087, '160', 'Milk Tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1102, 268, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1103, 268, 1091, '164', 'Water Melon Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1104, 268, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1105, 268, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1106, 268, 958, '51', 'Pandan custard bread', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1107, 269, 1047, '120', 'Chang Beer', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1108, 270, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1109, 270, 869, '8c', 'Pad Thai (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1110, 270, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1111, 270, 894, '17b', 'Green curry (beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1112, 270, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1113, 270, 1097, '170', 'Fresh Fruit Punch', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1114, 270, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1115, 270, 901, '19a', 'Panang curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1116, 270, 959, '52', 'Sago pearls', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1117, 271, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1118, 271, 911, '24', 'Tom Yum (shrimp/clear soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1119, 271, 1088, '161', 'Green Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1120, 271, 1080, '153', 'Longan Juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1121, 271, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1122, 271, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1123, 271, 959, '52', 'Sago pearls', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1124, 271, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1125, 271, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1126, 272, 864, '5', 'Tom yum fried rice', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1127, 272, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1128, 272, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1129, 272, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1130, 272, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1131, 272, 1094, '167', 'Chapman', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1132, 272, 893, '17a', 'Green curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1133, 272, 1097, '170', 'Fresh Fruit Punch', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1134, 273, 1072, '145', 'Long Island Iced Tea', 'standard', 0, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1135, 273, 1073, '146', 'Tequila Sunrise', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1136, 273, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1137, 273, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1138, 273, 1117, '185', 'FRENCH  FRIES', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1139, 273, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1140, 274, 1047, '120', 'Chang Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1141, 275, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1142, 275, 863, '4e', 'Fried rice mixed', 'standard', 0, '9900.0000', '9900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '29700.0000', '', '9900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1143, 275, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1144, 275, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1145, 275, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1146, 275, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1147, 276, 1047, '120', 'Chang Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1148, 276, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1149, 276, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1150, 276, 1074, '147', 'Vanila Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1151, 276, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1152, 276, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1153, 276, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1154, 277, 929, '31', 'Sweet and sour stir fry', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1155, 277, 893, '17a', 'Green curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1156, 277, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '23700.0000', '', '7900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1157, 277, 915, '25', 'Boiled chicken in fish sauce', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1158, 277, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1159, 277, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '8.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '500.0000', NULL, 1, 'QTY', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1160, 278, 869, '8c', 'Pad Thai (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1161, 278, 1048, '121', 'Chang Beer (Can)', 'standard', 0, '1800.0000', '1800.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3600.0000', '', '1800.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1162, 278, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1163, 279, 1085, '158', 'Thai Iced Black Coffee', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1164, 279, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1165, 279, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1166, 279, 938, '37b', 'Spicy minced (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1167, 279, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1168, 280, 861, '4c', 'Fried rice with seafood', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1169, 280, 930, '32', 'Fried boiled egg with tamarind sauce', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1170, 280, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1171, 280, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1172, 280, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1173, 280, 960, '53', 'Glutinous rice balls', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1174, 280, 1080, '153', 'Longan Juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1175, 280, 1085, '158', 'Thai Iced Black Coffee', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1176, 280, 1118, '189', 'FISH SAUCE CHILI', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1177, 280, 1119, '190', 'JAEW DIPPING SAUCE', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1178, 280, 1120, '191', 'THAI SPICY SEAFOOD DIPPING SAUCE', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1179, 280, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '13.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6500.0000', '', '500.0000', NULL, 1, 'QTY', '13.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1180, 280, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1181, 281, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1182, 281, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1183, 281, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1184, 281, 946, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1185, 281, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1186, 281, 1054, '127', 'Team Soda Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1187, 282, 864, '5', 'Tom yum fried rice', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1188, 282, 925, '29', 'Stir-fried chicken with ginger', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1189, 282, 861, '4c', 'Fried rice with seafood', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1190, 282, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1191, 282, 1072, '145', 'Long Island Iced Tea', 'standard', 0, '4000.0000', '4000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '4000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1192, 282, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1193, 283, 1080, '153', 'Longan Juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1194, 284, 885, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1195, 284, 914, '24d', 'Tom Yum (seafood/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1196, 284, 1047, '120', 'Chang Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1197, 284, 1115, '995', 'bottle singha beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1198, 284, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1199, 285, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1200, 285, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1201, 285, 893, '17a', 'Green curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1202, 285, 901, '19a', 'Panang curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1203, 285, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1204, 285, 943, '38c', 'Fried spring rolls (stuffed with vegetables)', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1205, 285, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1206, 285, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1207, 286, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1208, 286, 959, '52', 'Sago pearls', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1209, 286, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1210, 287, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1211, 288, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1212, 288, 949, '43', 'Sun-dried beef', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1213, 288, 934, '35b', 'Spicy papaya salad (fermented fish)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1222, 291, 1038, '111', 'Guiness Stout (Medium)', 'standard', NULL, '1550.0000', '1550.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1550.0000', '', '1550.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1230, 294, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1231, 294, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1232, 294, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1233, 295, 880, '11a', 'Noodles in gravy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1234, 295, 889, '15a', 'Noodles (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1235, 295, 890, '15b', 'Noodles (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1236, 295, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1237, 295, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1238, 296, 869, '8c', 'Pad Thai (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1239, 296, 882, '11c', 'Noodles in gravy sauce (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1240, 296, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1241, 297, 1121, '182', 'Andre', 'standard', 0, '12000.0000', '12000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '24000.0000', '', '12000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1242, 298, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1243, 298, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1244, 298, 1080, '153', 'Longan Juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1245, 298, 1095, '168', 'After-glo', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1246, 298, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1247, 299, 913, '24c', 'Tom Yum (seafood/clear soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1248, 299, 1082, '155', 'Roselle Juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1249, 299, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1250, 300, 1081, '154', 'Chrysanthemum Juice', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1251, 300, 882, '11c', 'Noodles in gravy sauce (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1252, 300, 960, '53', 'Glutinous rice balls', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1253, 300, 1122, '200', 'EXTRA  NOODLES', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1254, 300, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1256, 302, 954, '48', 'Beef hot pan', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1257, 302, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1258, 302, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1259, 302, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1260, 302, 1006, '88', 'Four Cousin White', 'standard', 0, '6300.0000', '6300.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6300.0000', '', '6300.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1261, 303, 1029, '103b', 'Olmeca White (shot)', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1262, 303, 996, '78', 'Escudo Rojo', 'standard', 0, '7000.0000', '7000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '7000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1281, 309, 863, '4e', 'Fried rice mixed', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1282, 309, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1283, 309, 1091, '164', 'Water Melon Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1284, 309, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1285, 309, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1323, 311, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1324, 311, 937, '37a', 'Spicy minced (beef)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1325, 311, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1326, 311, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1327, 311, 907, '21b', 'Massaman Curry (beef)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1328, 311, 1076, '149', 'Strawberry Milkshake', 'standard', NULL, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1329, 311, 1091, '164', 'Water Melon Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1330, 311, 1115, '995', 'bottle singha beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1331, 311, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1332, 311, 1123, '183', 'Double Black', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1333, 311, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1370, 313, 869, '8c', 'Pad Thai (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1371, 313, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1372, 313, 894, '17b', 'Green curry (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1373, 313, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1374, 313, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1375, 313, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1376, 313, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1377, 313, 1048, '121', 'Chang Beer (Can)', 'standard', NULL, '1800.0000', '1800.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3600.0000', '', '1800.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1400, 318, 1124, '998', 'BEAN  PAEP  ', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1401, 315, 913, '24c', 'Tom Yum (seafood/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1402, 315, 897, '18a', 'Red curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1403, 315, 1097, '170', 'Fresh Fruit Punch', 'standard', NULL, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1404, 315, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1454, 319, 1125, '997', 'PINEAPPLE  FRIED RICE', 'standard', NULL, '10500.0000', '10500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10500.0000', '', '10500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1460, 322, 1090, '163', 'Pineapple Juice', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1461, 317, 1037, '110', 'Desperado', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1462, 317, 889, '15a', 'Noodles (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1463, 317, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1464, 317, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1465, 317, 1037, '110', 'Desperado', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1488, 314, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1489, 314, 946, '40', 'Fried shrimp', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1490, 314, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1491, 314, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1492, 314, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1520, 320, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1521, 320, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1522, 320, 949, '43', 'Sun-dried beef', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1523, 320, 1087, '160', 'Milk Tea', 'standard', NULL, '3500.0000', '3500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10500.0000', '', '3500.0000', NULL, 1, 'QTY', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1524, 320, 1082, '155', 'Roselle Juice', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1525, 320, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1526, 320, 1124, '998', 'BEAN  PAEP  ', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1527, 320, 919, '27c', 'Stir-fried with holy basil (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1528, 320, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1535, 316, 1090, '163', 'Pineapple Juice', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1536, 316, 1075, '148', 'Chocolate Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1537, 316, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1538, 316, 943, '38c', 'Fried spring rolls (stuffed with vegetables)', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1539, 316, 994, '76', 'Nederburg', 'standard', NULL, '16200.0000', '16200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '16200.0000', '', '16200.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1540, 316, 1061, '134', 'Pina Colada', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1541, 316, 911, '24', 'Tom Yum (shrimp/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1542, 316, 932, '34', 'Spicy glass noodles salad', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1564, 325, 960, '53', 'Glutinous rice balls', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1565, 325, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1566, 325, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1580, 327, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1581, 327, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1582, 327, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1583, 327, 1126, '996', 'HOT TEA', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1584, 327, 1091, '164', 'Water Melon Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1585, 327, 1090, '163', 'Pineapple Juice', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1594, 328, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1595, 328, 1031, '104b', 'Sierra Tequila (shot)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1602, 324, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1603, 324, 1055, '128', 'Maltina', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1604, 324, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', NULL, '6900.0000', '6900.0000', '3.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '20700.0000', '', '6900.0000', NULL, 1, 'QTY', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1605, 324, 1124, '998', 'BEAN  PAEP  ', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1606, 324, 890, '15b', 'Noodles (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1607, 324, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1608, 329, 1094, '167', 'Chapman', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1609, 329, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1610, 330, 882, '11c', 'Noodles in gravy sauce (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1611, 330, 890, '15b', 'Noodles (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1612, 330, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1613, 330, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1614, 330, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1615, 326, 949, '43', 'Sun-dried beef', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1616, 326, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1617, 326, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1618, 326, 986, '71', 'Two oceans', 'standard', NULL, '8000.0000', '8000.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '8000.0000', '', '8000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1619, 326, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1620, 331, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1621, 331, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1622, 331, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1623, 331, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1624, 331, 1081, '154', 'Chrysanthemum Juice', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1625, 331, 1082, '155', 'Roselle Juice', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1626, 332, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1630, 335, 990, '74', 'Four Cousins Red', 'standard', NULL, '6300.0000', '6300.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6300.0000', '', '6300.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1634, 338, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1635, 339, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1636, 339, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1637, 339, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1638, 339, 909, '22', 'Sour soup with fish', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1639, 339, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1640, 339, 1127, '994', 'FRIED FISH ( S )', 'standard', NULL, '13000.0000', '13000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26000.0000', '', '13000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1641, 339, 1130, '991', 'Spaghetti  with spicy', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1642, 339, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1643, 339, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1644, 339, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '11.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '500.0000', NULL, 1, 'QTY', '11.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1655, 341, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1656, 341, 949, '43', 'Sun-dried beef', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1657, 341, 943, '38c', 'Fried spring rolls (stuffed with vegetables)', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1658, 341, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1667, 344, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1668, 344, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1669, 344, 932, '34', 'Spicy glass noodles salad', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1670, 344, 987, '72', 'Carlo Rossi Red', 'standard', NULL, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1671, 344, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1672, 345, 863, '4e', 'Fried rice mixed', 'standard', NULL, '9900.0000', '9900.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '39600.0000', '', '9900.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1673, 345, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1674, 345, 929, '31', 'Sweet and sour stir fry', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1675, 345, 915, '25', 'Boiled chicken in fish sauce', 'standard', NULL, '7900.0000', '7900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '23700.0000', '', '7900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1676, 345, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '9.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '500.0000', NULL, 1, 'QTY', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1677, 346, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1678, 346, 938, '37b', 'Spicy minced (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1679, 346, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1680, 346, 934, '35b', 'Spicy papaya salad (fermented fish)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1681, 346, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1682, 346, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1686, 348, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1687, 348, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1700, 351, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1701, 351, 885, '13', 'Chicken northern style curry noodles', 'standard', NULL, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1702, 351, 1082, '155', 'Roselle Juice', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1703, 351, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1704, 352, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1705, 352, 1088, '161', 'Green Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1706, 352, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1707, 352, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1708, 353, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1709, 353, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1710, 353, 1115, '995', 'bottle singha beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1711, 353, 1090, '163', 'Pineapple Juice', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1714, 355, 1061, '134', 'Pina Colada', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1715, 355, 1062, '135', 'Tequila Sunrise', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1741, 358, 1061, '134', 'Pina Colada', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1742, 358, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1743, 358, 907, '21b', 'Massaman Curry (beef)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1744, 358, 943, '38c', 'Fried spring rolls (stuffed with vegetables)', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1745, 358, 1061, '134', 'Pina Colada', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1752, 360, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1753, 360, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1754, 360, 1071, '144', 'Malibu Sunset', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1755, 360, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1756, 360, 1064, '137', 'Mojito', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1757, 360, 876, '10a', 'Stir-fried glass noodles (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1796, 362, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1797, 362, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1798, 362, 1042, '115', 'Origin Bitters (75)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1810, 363, 905, '20', 'Chicken leg curry', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1811, 363, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1812, 363, 930, '32', 'Fried boiled egg with tamarind sauce', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1813, 363, 937, '37a', 'Spicy minced (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1814, 363, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '2000.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1815, 363, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1816, 363, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1817, 363, 1047, '120', 'Chang Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1818, 363, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1819, 363, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1820, 363, 1055, '128', 'Maltina', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1866, 364, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1867, 364, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1868, 364, 926, '30', 'Stir-fried mixed vegetables', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1869, 364, 953, '47', 'Fried fish with chili sauce', 'standard', NULL, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1870, 364, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1871, 364, 1088, '161', 'Green Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1872, 364, 1047, '120', 'Chang Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1873, 364, 1090, '163', 'Pineapple Juice', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1874, 364, 1047, '120', 'Chang Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1875, 364, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1876, 364, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1877, 365, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1878, 365, 880, '11a', 'Noodles in gravy sauce (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1879, 365, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1880, 365, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1881, 365, 1080, '153', 'Longan Juice', 'standard', 0, '3500.0000', '3500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10500.0000', '', '3500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1882, 365, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1883, 365, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1884, 366, 1112, 'PR173', 'Ichitan orange', 'standard', NULL, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1885, 367, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1886, 367, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1887, 367, 1087, '160', 'Milk Tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1888, 367, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1889, 367, 1085, '158', 'Thai Iced Black Coffee', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1890, 368, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1891, 368, 863, '4e', 'Fried rice mixed', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1892, 368, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1893, 368, 1097, '170', 'Fresh Fruit Punch', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1894, 368, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1895, 369, 863, '4e', 'Fried rice mixed', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1896, 369, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1900, 371, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1901, 371, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1902, 371, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1973, 374, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1974, 374, 893, '17a', 'Green curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1975, 374, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1976, 374, 914, '24d', 'Tom Yum (seafood/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1977, 374, 919, '27c', 'Stir-fried with holy basil (beef)', 'standard', 0, '9900.0000', '9900.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '39600.0000', '', '9900.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1978, 374, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1979, 374, 945, '39', 'Hat Yai-style fried chicken', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1980, 374, 863, '4e', 'Fried rice mixed', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1981, 374, 890, '15b', 'Noodles (beef)', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1982, 374, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1983, 374, 1067, '140', 'Cosmopolitan', 'standard', 0, '4000.0000', '4000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '4000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1984, 374, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '8.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '500.0000', NULL, 1, 'QTY', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1985, 374, 1064, '137', 'Mojito', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1986, 374, 1076, '149', 'Strawberry Milkshake', 'standard', 0, '5000.0000', '5000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '5000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1987, 374, 1094, '167', 'Chapman', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1988, 374, 1074, '147', 'Vanila Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1989, 374, 1093, '166', 'Lemon Juice', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1990, 374, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1991, 374, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '11.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '500.0000', NULL, 1, 'QTY', '11.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1992, 374, 952, '46', 'Fried fish with three flavors sauce', 'standard', NULL, '13000.0000', '13000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26000.0000', '', '13000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2019, 376, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2020, 376, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2021, 376, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2022, 376, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2023, 376, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2024, 376, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2025, 376, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2026, 376, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2086, 380, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2087, 380, 915, '25', 'Boiled chicken in fish sauce', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2088, 381, 1115, '995', 'bottle singha beer', 'standard', 0, '4500.0000', '4500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '18000.0000', '', '4500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2089, 381, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2090, 381, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2091, 381, 893, '17a', 'Green curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2092, 381, 907, '21b', 'Massaman Curry (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2093, 381, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2094, 382, 1115, '995', 'bottle singha beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2095, 383, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '2.0000', 1, '1618.1800', 3, '10%', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2096, 383, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2097, 383, 1126, '996', 'HOT TEA', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2098, 383, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2104, 384, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2105, 384, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2106, 384, 1029, '103b', 'Olmeca White (shot)', 'standard', 0, '1500.0000', '1500.0000', '7.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10500.0000', '', '1500.0000', NULL, 1, 'QTY', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2107, 384, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2108, 384, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2113, 387, 1029, '103b', 'Olmeca White (shot)', 'standard', NULL, '1500.0000', '1500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '1500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2114, 387, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2115, 387, 1096, '169', 'Tropical Storm', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2116, 388, 1010, '92', 'Regency Vsop', 'standard', NULL, '85000.0000', '85000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '85000.0000', '', '85000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2204, 390, 1064, '137', 'Mojito', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2205, 390, 1060, '133', 'Margarita', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2206, 390, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2207, 390, 926, '30', 'Stir-fried mixed vegetables', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2208, 390, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2209, 390, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2210, 390, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2211, 390, 877, '10b', 'Stir-fried glass noodles (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2212, 390, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2213, 390, 901, '19a', 'Panang curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2223, 392, 937, '37a', 'Spicy minced (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2224, 392, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2225, 392, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2226, 392, 1037, '110', 'Desperado', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2227, 392, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2231, 394, 954, '48', 'Beef hot pan', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2232, 394, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2233, 394, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2234, 394, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2313, 398, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2314, 398, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2315, 399, 1097, '170', 'Fresh Fruit Punch', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2316, 399, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2360, 403, 970, '59b', 'Flirt Vodka (shot)', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2361, 403, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2362, 403, 1097, '170', 'Fresh Fruit Punch', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2363, 403, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10500.0000', '', '3500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2364, 403, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2365, 403, 857, '2', 'Lamb Biryani', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2366, 403, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2367, 403, 953, '47', 'Fried fish with chili sauce', 'standard', NULL, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2368, 403, 926, '30', 'Stir-fried mixed vegetables', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2369, 403, 911, '24', 'Tom Yum (shrimp/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2370, 403, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2371, 403, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2372, 404, 970, '59b', 'Flirt Vodka (shot)', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2376, 405, 908, '21c', 'Massaman Curry (lamb)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2377, 405, 953, '47', 'Fried fish with chili sauce', 'standard', NULL, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2378, 405, 887, '14b', 'Rice noodles with coconut milk curry', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2379, 405, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2380, 405, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2381, 406, 952, '46', 'Fried fish with three flavors sauce', 'standard', NULL, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2382, 406, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2383, 406, 887, '14b', 'Rice noodles with coconut milk curry', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2384, 406, 959, '52', 'Sago pearls', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2385, 406, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2400, 409, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2401, 409, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2402, 409, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2407, 410, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2408, 410, 1029, '103b', 'Olmeca White (shot)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2409, 410, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2456, 413, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2457, 413, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2458, 413, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2459, 413, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2460, 413, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2461, 413, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2486, 414, 913, '24c', 'Tom Yum (seafood/clear soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2487, 414, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2488, 414, 902, '19b', 'Panang curry (beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2489, 414, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2490, 414, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2491, 414, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2492, 414, 1115, '123a', 'bottle singha beer', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2493, 414, 1047, '120', 'Chang Beer', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2494, 414, 961, '54', 'Crispy red ruby', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2495, 414, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2510, 415, 902, '19b', 'Panang curry (beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2511, 415, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '2.0000', 1, '1618.1800', 3, '10%', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2512, 415, 892, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2513, 415, 884, '12', 'Baked shrimp with glass noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2514, 415, 939, '37c', 'Spicy chopped meat salad (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2515, 415, 977, '65', 'William Lawson', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2516, 415, 1079, '152', 'Chivita Active', 'standard', 0, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2517, 416, 1047, '120', 'Chang Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2518, 416, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2519, 416, 890, '15b', 'Noodles (beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2520, 416, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2524, 419, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2525, 420, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2526, 420, 1034, '107', 'Star Raddler', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2530, 422, 1048, '121', 'Chang Beer (Can)', 'standard', NULL, '3000.0000', '3000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '3000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2531, 422, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2532, 422, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2578, 424, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2579, 424, 921, '28a', 'Stir-fried with bell peppers (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2580, 424, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2581, 424, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2582, 424, 949, '43', 'Sun-dried beef', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2583, 424, 1060, '133', 'Margarita', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2584, 424, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2585, 424, 943, '38c', 'Fried spring rolls (stuffed with vegetables)', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2586, 424, 1076, '149', 'Strawberry Milkshake', 'standard', NULL, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2587, 424, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2588, 424, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2589, 424, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2629, 429, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2630, 429, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2631, 429, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2632, 430, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2633, 431, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2642, 432, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2643, 432, 910, '23', 'Chicken, tofu and seaweed in clear soup', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2644, 432, 890, '15b', 'Noodles (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2730, 436, 1074, '147', 'Vanila Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2731, 436, 1061, '134', 'Pina Colada', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2732, 436, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '2500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2733, 436, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2734, 436, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2735, 436, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2736, 436, 946, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2737, 436, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '3.0000', 1, '2427.2700', 3, '10%', '0', '0.0000', '26700.0000', '', '8900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2738, 436, 861, '4c', 'Fried rice with seafood', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2739, 436, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '6900.0000', '6900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20700.0000', '', '6900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2740, 436, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2741, 436, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26000.0000', '', '13000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2742, 436, 1088, '161', 'Green Tea', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2743, 436, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '7.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17500.0000', '', '2500.0000', NULL, 1, 'QTY', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2744, 436, 1072, '145', 'Long Island Iced Tea', 'standard', 0, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2745, 436, 1034, '107', 'Star Raddler', 'standard', 0, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2746, 436, 1133, '898', 'Fried french fries', 'standard', 0, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2747, 437, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2748, 437, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2749, 437, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2750, 438, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '20000.0000', '20000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20000.0000', '', '20000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2751, 438, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2752, 438, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2753, 438, 1066, '139', 'Mai Tai', 'standard', 0, '4000.0000', '4000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '4000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2754, 438, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2755, 438, 1003, '85', '4th Street White', 'standard', 0, '8000.0000', '8000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '8000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2756, 439, 979, '67', 'Teeling Whisky', 'standard', 0, '25500.0000', '25500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '25500.0000', '', '25500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2757, 439, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2758, 439, 1053, '126', 'Sprite', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2760, 441, 1053, '126', 'Sprite', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2761, 442, 1088, '161', 'Green Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2776, 447, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2777, 448, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2778, 448, 1096, '169', 'Tropical Storm', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2779, 448, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2788, 452, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2789, 452, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2795, 454, 1058, '131', 'Bullet', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2796, 455, 1058, '131', 'Bullet', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2797, 456, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2798, 456, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2799, 457, 1071, '144', 'Malibu Sunset', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2800, 457, 1060, '133', 'Margarita', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2801, 457, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2802, 457, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '2500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2806, 458, 957, '50b', 'Mixed set (small)', 'standard', NULL, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2807, 458, 1126, '996', 'HOT TEA', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2808, 458, 1049, '122', 'Leo Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2819, 461, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2820, 461, 932, '34', 'Spicy glass noodles salad', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2821, 461, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2822, 461, 914, '24d', 'Tom Yum (seafood/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2823, 461, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2836, 463, 910, '23', 'Chicken, tofu and seaweed in clear soup', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2837, 463, 905, '20', 'Chicken leg curry', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2838, 463, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2846, 464, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2847, 464, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2848, 464, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2849, 464, 1061, '134', 'Pina Colada', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2850, 464, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2851, 464, 1054, '127', 'Team Soda Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2852, 464, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2853, 465, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2854, 465, 962, '55', 'Cendol in coconut milk', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2855, 465, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2856, 466, 1088, '161', 'Green Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2857, 466, 1087, '160', 'Milk Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2858, 466, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2859, 466, 1080, '153', 'Longan Juice', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2874, 473, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2875, 473, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2885, 475, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2886, 475, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2890, 476, 946, '40', 'Fried shrimp', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2891, 476, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2892, 476, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2893, 476, 919, '27c', 'Stir-fried with holy basil (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2894, 476, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2895, 476, 893, '17a', 'Green curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2896, 476, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2897, 476, 1080, '153', 'Longan Juice', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2901, 478, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2904, 480, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '80000.0000', '80000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '80000.0000', '', '80000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2905, 480, 1083, '156', 'Bael Fruit Juice', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2906, 480, 1087, '160', 'Milk Tea', 'standard', NULL, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2924, 482, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2925, 482, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2926, 482, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2927, 482, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2928, 482, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2929, 483, 859, '4a', 'Fried rice with chicken', 'standard', 0, '50000.0000', '50000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '50000.0000', '', '50000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2930, 483, 891, '15c', 'Noodles (Tom Yum)', 'standard', 0, '50000.0000', '50000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '50000.0000', '', '50000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2931, 484, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2932, 484, 1040, '113', 'Smirnoff Ice (Can)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2933, 485, 1130, '991', 'Spaghetti  with spicy', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2934, 485, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2935, 485, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2936, 486, 882, '11c', 'Noodles in gravy sauce (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2937, 486, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2938, 486, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2955, 490, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2956, 490, 1086, '159', 'Thai Tea', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2957, 490, 1085, '158', 'Thai Iced Black Coffee', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2958, 490, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2972, 491, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2973, 491, 1112, 'PR173', 'Ichitan orange', 'standard', NULL, '3000.0000', '3000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '3000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2980, 492, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2981, 492, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2982, 492, 1126, '996', 'HOT TEA', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2983, 492, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2984, 492, 1047, '120', 'Chang Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2985, 492, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2988, 494, 1090, '163', 'Pineapple Juice', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2989, 494, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 496, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 496, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3005, 496, 957, '50b', 'Mixed set (small)', 'standard', NULL, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3006, 496, 943, '38c', 'Fried spring rolls (stuffed with vegetables)', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3007, 496, 946, '40', 'Fried shrimp', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3008, 496, 1097, '170', 'Fresh Fruit Punch', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3009, 496, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3078, 500, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 500, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 500, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3081, 500, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3082, 500, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 500, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 500, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 500, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '2.0000', 1, '1618.1800', 3, '10%', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 500, 957, '50b', 'Mixed set (small)', 'standard', 0, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 501, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 501, 884, '12', 'Baked shrimp with glass noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3089, 501, 955, '49', 'Seafood hot pan', 'standard', 0, '10900.0000', '10900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10900.0000', '', '10900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3090, 501, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 501, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3092, 501, 954, '48', 'Beef hot pan', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 501, 863, '4e', 'Fried rice mixed', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3094, 501, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3095, 502, 892, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 502, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 502, 1083, '156', 'Bael Fruit Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 502, 861, '4c', 'Fried rice with seafood', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3099, 502, 1086, '159', 'Thai Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 504, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 505, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3103, 506, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3104, 507, 945, '39', 'Hat Yai-style fried chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3105, 507, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3106, 507, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3107, 507, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3108, 507, 1047, '120', 'Chang Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3122, 509, 920, '27d', 'Stir-fried with holy basil (mixed meat)', 'standard', 0, '10400.0000', '10400.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10400.0000', '', '10400.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3123, 509, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3124, 509, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3125, 509, 1061, '134', 'Pina Colada', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3126, 509, 1060, '133', 'Margarita', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3146, 515, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3147, 515, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 515, 926, '30', 'Stir-fried mixed vegetables', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3149, 515, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3150, 515, 1081, '154', 'Chrysanthemum Juice', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3151, 515, 889, '15a', 'Noodles (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3219, 518, 882, '11c', 'Noodles in gravy sauce (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3220, 518, 890, '15b', 'Noodles (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3221, 518, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3222, 518, 1088, '161', 'Green Tea', 'standard', NULL, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 931, '33', 'Stir-fried crab with curry powder', 'standard', NULL, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3226, 520, 914, '24d', 'Tom Yum (seafood/creamy soup)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3228, 520, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 945, '39', 'Hat Yai-style fried chicken', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3232, 520, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3233, 520, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '7.0000', 1, '0.0000', 1, '0', '0', '0.0000', '31500.0000', '', '4500.0000', NULL, 1, 'QTY', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3234, 520, 1067, '140', 'Cosmopolitan', 'standard', NULL, '4000.0000', '4000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '4000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3235, 520, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3236, 520, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3237, 520, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3238, 520, 1085, '158', 'Thai Iced Black Coffee', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 1081, '154', 'Chrysanthemum Juice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 520, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3244, 522, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 523, 890, '15b', 'Noodles (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3250, 523, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3251, 523, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3252, 523, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 525, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 525, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3284, 528, 1086, '159', 'Thai Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 528, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 528, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 528, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 528, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 528, 1115, '123a', 'bottle singha beer', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3290, 529, 1057, '130', 'Redbull', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 529, 1042, '115', 'Origin Bitters (75)', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3292, 529, 1061, '134', 'Pina Colada', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3293, 529, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 529, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3316, 533, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3317, 533, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3318, 533, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3319, 533, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3320, 533, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 533, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 534, 1065, '138', 'Sex on the Beach', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 535, 1136, '895', 'MANGO JUICE', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 536, 1042, '115', 'Origin Bitters (75)', 'standard', NULL, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 540, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '22500.0000', '', '4500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 540, 885, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 540, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 540, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3383, 540, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3384, 540, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 542, 1049, '122', 'Leo Beer', 'standard', NULL, '4500.0000', '4500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '27000.0000', '', '4500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 543, 1049, '122', 'Leo Beer', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 544, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 544, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 544, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 544, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 544, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 544, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3394, 544, 1080, '153', 'Longan Juice', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3395, 544, 1088, '161', 'Green Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3397, 546, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3428, 549, 994, '76', 'Nederburg', 'standard', 0, '16200.0000', '16200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '16200.0000', '', '16200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 549, 1057, '130', 'Redbull', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3430, 549, 1036, '109', 'Guiness Stout (Big)', 'standard', 0, '2700.0000', '2700.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5400.0000', '', '2700.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3431, 549, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 549, 954, '48', 'Beef hot pan', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 549, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 549, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3435, 549, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 549, 1092, '165', 'Strawberry Juice', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 548, 880, '11a', 'Noodles in gravy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 548, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3439, 548, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3440, 548, 864, '5', 'Tom yum fried rice', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 550, 1047, '120', 'Chang Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3489, 554, 885, '13', 'Chicken northern style curry noodles', 'standard', NULL, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 554, 946, '40', 'Fried shrimp', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 554, 949, '43', 'Sun-dried beef', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 554, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 554, 1070, '143', 'Gin & Tonic', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 554, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3495, 554, 1066, '139', 'Mai Tai', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 555, 953, '47', 'Fried fish with chili sauce', 'standard', NULL, '20000.0000', '20000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20000.0000', '', '20000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 555, 919, '27c', 'Stir-fried with holy basil (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3503, 555, 895, '17c', 'Green curry (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3504, 555, 908, '21c', 'Massaman Curry (lamb)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 555, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 555, 1054, '127', 'Team Soda Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3507, 556, 1082, '155', 'Roselle Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3508, 556, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3509, 556, 957, '50b', 'Mixed set (small)', 'standard', 0, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 556, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 556, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3519, 558, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 558, 947, '41', 'Fried squid', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 558, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3522, 558, 870, '8d', 'Pad Thai (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3523, 559, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 559, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3527, 562, 949, '43', 'Sun-dried beef', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 563, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '23700.0000', '', '7900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 565, 1041, '114', 'Origin Beer', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 565, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 568, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 568, 1088, '161', 'Green Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 568, 857, '2', 'Lamb Biryani', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 568, 1075, '148', 'Chocolate Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3562, 568, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 568, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3564, 568, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3565, 569, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 569, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3567, 569, 1036, '109', 'Guiness Stout (Big)', 'standard', NULL, '2700.0000', '2700.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2700.0000', '', '2700.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3568, 569, 1090, '163', 'Pineapple Juice', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 571, 1058, '131', 'Bullet', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3572, 571, 1075, '148', 'Chocolate Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3573, 572, 919, '27c', 'Stir-fried with holy basil (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 572, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 573, 919, '27c', 'Stir-fried with holy basil (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 573, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3577, 573, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', 'pad thai(egg)', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 576, 922, '28b', 'Stir-fried with bell peppers (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 576, 926, '30', 'Stir-fried mixed vegetables', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 576, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 576, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 576, 1047, '120', 'Chang Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 576, 1138, '894', 'HOT GINGER', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3650, 579, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 579, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 579, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 579, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 579, 1023, '100b', 'Campari (shot)', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3655, 579, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 1072, '145', 'Long Island Iced Tea', 'standard', 0, '4000.0000', '4000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '4000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '3.0000', 1, '2427.2700', 3, '10%', '0', '0.0000', '26700.0000', '', '8900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 1093, '166', 'Lemon Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 885, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 1074, '147', 'Vanila Milkshake', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3695, 580, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 1031, '104b', 'Sierra Tequila (shot)', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 1139, '893', 'chicken', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 580, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 581, 946, '40', 'Fried shrimp', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 581, 939, '37c', 'Spicy chopped meat salad (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 581, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3703, 581, 914, '24d', 'Tom Yum (seafood/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 581, 882, '11c', 'Noodles in gravy sauce (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 581, 1087, '160', 'Milk Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 581, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3707, 581, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 584, 1057, '130', 'Redbull', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 585, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3714, 585, 870, '8d', 'Pad Thai (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 587, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3717, 587, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3718, 587, 1053, '126', 'Sprite', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 588, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 588, 1126, '996', 'HOT TEA', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3723, 588, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 588, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3725, 588, 1042, '115', 'Origin Bitters (75)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3726, 588, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 588, 1087, '160', 'Milk Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3738, 591, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 591, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3741, 591, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 1065, '138', 'Sex on the Beach', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 592, 1066, '139', 'Mai Tai', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3745, 592, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 598, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 598, 893, '17a', 'Green curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 598, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 598, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 598, 1055, '128', 'Maltina', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 598, 1052, '125', 'Fanta', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 598, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 599, 906, '21a', 'Massaman Curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 599, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 600, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 600, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 600, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 600, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3822, 600, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 602, 1039, '112', 'Budweiser', 'standard', NULL, '2800.0000', '2800.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5600.0000', '', '2800.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 602, 1040, '113', 'Smirnoff Ice (Can)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 605, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 605, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 605, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 606, 1046, '119', 'Throphy Beer', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 606, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 609, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3868, 609, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 609, 1074, '147', 'Vanila Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 609, 1079, '152', 'Chivita Active', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 609, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 609, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 609, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 609, 885, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 609, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3876, 609, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 610, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '2000.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 610, 909, '22', 'Sour soup with fish', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 610, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 610, 959, '52', 'Sago pearls', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 610, 915, '25', 'Boiled chicken in fish sauce', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 613, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 613, 1064, '137', 'Mojito', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 615, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 615, 908, '21c', 'Massaman Curry (lamb)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 615, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 615, 990, '74', 'Four Cousins Red', 'standard', 0, '6500.0000', '6500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6500.0000', '', '6500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 615, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 615, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 617, 1054, '127', 'Team Soda Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 618, 1115, '123a', 'bottle singha beer', 'standard', 0, '5500.0000', '5500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '11000.0000', '', '5500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 618, 1054, '127', 'Team Soda Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3913, 618, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 618, 1034, '107', 'Star Raddler', 'standard', 0, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 618, 951, '45', 'Red grilled chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 618, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 618, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 620, 1092, '165', 'Strawberry Juice', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 620, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 620, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 620, 948, '42', 'Fried chicken wings', 'standard', 0, '5900.0000', '5900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17700.0000', '', '5900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3929, 620, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 621, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3931, 621, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3978, 624, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 624, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 624, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 624, 857, '2', 'Lamb Biryani', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 624, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 624, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 624, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 626, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '20000.0000', '20000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20000.0000', '', '20000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 626, 892, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 626, 1086, '159', 'Thai Tea', 'standard', 0, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 626, 861, '4c', 'Fried rice with seafood', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4020, 626, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 626, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 626, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 626, 943, '38c', 'Fried spring rolls (stuffed with vegetables)', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4024, 626, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4025, 627, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '20000.0000', '20000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20000.0000', '', '20000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 627, 869, '8c', 'Pad Thai (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 627, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4028, 627, 857, '2', 'Lamb Biryani', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4029, 627, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 627, 1091, '164', 'Water Melon Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 627, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 627, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 630, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 632, 932, '34', 'Spicy glass noodles salad', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 632, 937, '37a', 'Spicy minced (beef)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4110, 635, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 635, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 635, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4113, 635, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 635, 1078, '151', 'Chi Exotic', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4140, 637, 864, '5', 'Tom yum fried rice', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4141, 637, 911, '24', 'Tom Yum (shrimp/clear soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4142, 637, 913, '24c', 'Tom Yum (seafood/clear soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4143, 637, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4144, 637, 892, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4145, 637, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4146, 637, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4147, 637, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4148, 637, 1075, '148', 'Chocolate Milkshake', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4149, 637, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4150, 637, 1093, '166', 'Lemon Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4151, 637, 1091, '164', 'Water Melon Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4152, 637, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4154, 639, 864, '5', 'Tom yum fried rice', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4155, 639, 911, '24', 'Tom Yum (shrimp/clear soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4156, 639, 931, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4157, 639, 1076, '149', 'Strawberry Milkshake', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4158, 639, 1074, '147', 'Vanila Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4169, 641, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '23700.0000', '', '7900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4170, 641, 913, '24c', 'Tom Yum (seafood/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4171, 641, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4187, 643, 1040, '113', 'Smirnoff Ice (Can)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4188, 643, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4189, 643, 1038, '111', 'Guiness Stout (Medium)', 'standard', NULL, '1550.0000', '1550.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3100.0000', '', '1550.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4190, 644, 1064, '137', 'Mojito', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4191, 644, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4192, 644, 945, '39', 'Hat Yai-style fried chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4193, 644, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4194, 644, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4206, 645, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13500.0000', '', '4500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4207, 645, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4208, 645, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4209, 645, 1094, '167', 'Chapman', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4210, 645, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4211, 645, 1036, '109', 'Guiness Stout (Big)', 'standard', 0, '2700.0000', '2700.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2700.0000', '', '2700.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4212, 645, 957, '50b', 'Mixed set (small)', 'standard', NULL, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4250, 649, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4251, 649, 1076, '149', 'Strawberry Milkshake', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4252, 649, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4253, 649, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4254, 649, 1058, '131', 'Bullet', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4280, 653, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4281, 653, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4282, 653, 931, '33', 'Stir-fried crab with curry powder', 'standard', NULL, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4283, 653, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4284, 653, 1080, '153', 'Longan Juice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4285, 653, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4286, 653, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4287, 653, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4288, 654, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4289, 654, 915, '25', 'Boiled chicken in fish sauce', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4290, 654, 1096, '169', 'Tropical Storm', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4291, 654, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4292, 654, 945, '39', 'Hat Yai-style fried chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4293, 654, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4294, 655, 945, '39', 'Hat Yai-style fried chicken', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4295, 655, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4296, 655, 888, '14c', 'Rice noodles with northern curry', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4297, 655, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4311, 660, 1065, '138', 'Sex on the Beach', 'standard', NULL, '4000.0000', '4000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '4000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4323, 661, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4324, 661, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4325, 661, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4326, 661, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4327, 661, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4395, 665, 863, '4e', 'Fried rice mixed', 'standard', NULL, '9900.0000', '9900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '29700.0000', '', '9900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4396, 665, 932, '34', 'Spicy glass noodles salad', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4397, 665, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4398, 665, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4399, 665, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4400, 665, 1115, '123a', 'bottle singha beer', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4437, 666, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4438, 666, 946, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4439, 666, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4440, 666, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4441, 666, 864, '5', 'Tom yum fried rice', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4442, 666, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4443, 666, 925, '29', 'Stir-fried chicken with ginger', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4444, 666, 1115, '123a', 'bottle singha beer', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4445, 666, 1112, 'PR173', 'Ichitan orange', 'standard', 0, '3000.0000', '3000.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '3000.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4446, 666, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4447, 666, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13500.0000', '', '4500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4471, 667, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4472, 667, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4473, 667, 1037, '110', 'Desperado', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4474, 667, 1072, '145', 'Long Island Iced Tea', 'standard', 0, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4475, 667, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4476, 668, 938, '37b', 'Spicy minced (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4477, 668, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4478, 668, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4526, 672, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4527, 672, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4542, 674, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4543, 674, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4544, 674, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '15000.0000', '15000.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '75000.0000', '', '15000.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4545, 674, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4546, 674, 1078, '151', 'Chi Exotic', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4547, 674, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4548, 674, 1058, '131', 'Bullet', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4549, 674, 1080, '153', 'Longan Juice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4550, 674, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '3000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4551, 674, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4552, 674, 1034, '107', 'Star Raddler', 'standard', NULL, '1900.0000', '1900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3800.0000', '', '1900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4553, 674, 996, '78', 'Escudo Rojo', 'standard', NULL, '7000.0000', '7000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '7000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4557, 676, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4558, 676, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4559, 676, 1088, '161', 'Green Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4560, 677, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4561, 677, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4562, 677, 906, '21a', 'Massaman Curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4563, 677, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4564, 677, 1023, '100b', 'Campari (shot)', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4565, 677, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4582, 679, 893, '17a', 'Green curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4583, 679, 897, '18a', 'Red curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4584, 679, 946, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4585, 679, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4586, 679, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4587, 679, 1085, '158', 'Thai Iced Black Coffee', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4623, 683, 880, '11a', 'Noodles in gravy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4624, 683, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4625, 683, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4626, 683, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4627, 683, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4628, 683, 1080, '153', 'Longan Juice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4629, 683, 962, '55', 'Cendol in coconut milk', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4630, 683, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4631, 683, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4659, 687, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4660, 687, 1040, '113', 'Smirnoff Ice (Can)', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4661, 687, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4662, 688, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4663, 688, 1083, '156', 'Bael Fruit Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4664, 688, 1074, '147', 'Vanila Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4665, 688, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4666, 688, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4667, 688, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4668, 688, 1064, '137', 'Mojito', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4673, 690, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4674, 690, 939, '37c', 'Spicy chopped meat salad (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4675, 690, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4676, 690, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4677, 690, 1115, '123a', 'bottle singha beer', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4678, 690, 1047, '120', 'Chang Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4679, 690, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4680, 690, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4681, 690, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4686, 691, 1076, '149', 'Strawberry Milkshake', 'standard', NULL, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4687, 691, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4688, 691, 863, '4e', 'Fried rice mixed', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4689, 691, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4690, 692, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4691, 692, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4692, 692, 951, '45', 'Red grilled chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4693, 692, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4694, 692, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4700, 694, 914, '24d', 'Tom Yum (seafood/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4701, 694, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4702, 694, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4703, 695, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', 0, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4704, 695, 1097, '170', 'Fresh Fruit Punch', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4705, 695, 873, '9b', 'Stir-fried noodle with soy sauce (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4719, 697, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4720, 697, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4721, 697, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4722, 697, 902, '19b', 'Panang curry (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4723, 697, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4724, 697, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4725, 697, 1115, '123a', 'bottle singha beer', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4726, 697, 1085, '158', 'Thai Iced Black Coffee', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4727, 698, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4728, 698, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4729, 698, 914, '24d', 'Tom Yum (seafood/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4730, 698, 949, '43', 'Sun-dried beef', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4731, 698, 915, '25', 'Boiled chicken in fish sauce', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4732, 698, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '7.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '500.0000', NULL, 1, 'QTY', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4733, 699, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4734, 699, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4735, 699, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4736, 700, 1080, '153', 'Longan Juice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4737, 700, 1085, '158', 'Thai Iced Black Coffee', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4740, 702, 926, '30', 'Stir-fried mixed vegetables', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4741, 702, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4742, 702, 901, '19a', 'Panang curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4743, 702, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4744, 702, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4745, 702, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4746, 702, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4747, 702, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '9.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '500.0000', NULL, 1, 'QTY', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4780, 708, 1016, '96', 'Gordon Gin Small', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4781, 709, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4782, 709, 1086, '159', 'Thai Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4783, 709, 1080, '153', 'Longan Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4784, 709, 1115, '123a', 'bottle singha beer', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4785, 709, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4811, 711, 989, '73b', 'Liria red (shot)', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4812, 711, 1072, '145', 'Long Island Iced Tea', 'standard', 0, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4813, 711, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4814, 711, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4815, 711, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4816, 711, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4817, 712, 1058, '131', 'Bullet', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4818, 713, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4819, 713, 1014, '95', 'Gordon Gin', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4820, 713, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4821, 713, 1040, '113', 'Smirnoff Ice (Can)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4822, 713, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4823, 714, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4824, 714, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4825, 714, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4826, 714, 946, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4827, 714, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4828, 714, 951, '45', 'Red grilled chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4829, 714, 882, '11c', 'Noodles in gravy sauce (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4830, 714, 1112, 'PR173', 'Ichitan orange', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4831, 714, 1087, '160', 'Milk Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4832, 714, 1052, '125', 'Fanta', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4833, 714, 938, '37b', 'Spicy minced (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4834, 714, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4835, 714, 946, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4836, 714, 945, '39', 'Hat Yai-style fried chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4837, 714, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4838, 714, 962, '55', 'Cendol in coconut milk', 'standard', 0, '4500.0000', '4500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13500.0000', '', '4500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4839, 715, 889, '15a', 'Noodles (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4840, 715, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4841, 715, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4842, 716, 1055, '128', 'Maltina', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4843, 717, 877, '10b', 'Stir-fried glass noodles (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4844, 717, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4845, 718, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4846, 718, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4860, 721, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4861, 721, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4862, 721, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4876, 722, 1097, '170', 'Fresh Fruit Punch', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4877, 722, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4878, 722, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4879, 722, 937, '37a', 'Spicy minced (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4880, 722, 908, '21c', 'Massaman Curry (lamb)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4881, 722, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4882, 722, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4883, 722, 959, '52', 'Sago pearls', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4884, 722, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4885, 722, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4899, 727, 1132, 'CIG', 'Cigarette', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4908, 728, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4914, 729, 888, '14c', 'Rice noodles with northern curry', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4915, 729, 919, '27c', 'Stir-fried with holy basil (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4916, 729, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4917, 729, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4918, 729, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4919, 730, 880, '11a', 'Noodles in gravy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4920, 730, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4921, 730, 1047, '120', 'Chang Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4922, 730, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4939, 732, 1046, '119', 'Throphy Beer', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4940, 732, 857, '2', 'Lamb Biryani', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4941, 732, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4954, 733, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4955, 733, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4956, 733, 947, '41', 'Fried squid', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4957, 733, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4976, 735, 1042, '115', 'Origin Bitters (75)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4977, 736, 861, '4c', 'Fried rice with seafood', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4978, 736, 1010, '92', 'Regency Vsop', 'standard', 0, '85000.0000', '85000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '85000.0000', '', '85000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4979, 736, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4986, 738, 1086, '159', 'Thai Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4987, 738, 884, '12', 'Baked shrimp with glass noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4988, 738, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4989, 738, 892, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4990, 738, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4991, 738, 1076, '149', 'Strawberry Milkshake', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4992, 739, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4993, 739, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4994, 740, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4995, 740, 943, '38c', 'Fried spring rolls (stuffed with vegetables)', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4996, 740, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4997, 740, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4998, 740, 1006, '88', 'Four Cousin White', 'standard', NULL, '6300.0000', '6300.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6300.0000', '', '6300.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4999, 740, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5000, 740, 1061, '134', 'Pina Colada', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5001, 740, 954, '48', 'Beef hot pan', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5002, 740, 1054, '127', 'Team Soda Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5003, 741, 1034, '107', 'Star Raddler', 'standard', NULL, '1900.0000', '1900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1900.0000', '', '1900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5018, 743, 946, '40', 'Fried shrimp', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5019, 743, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5020, 743, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5021, 743, 1097, '170', 'Fresh Fruit Punch', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5022, 743, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5037, 745, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5038, 745, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5039, 745, 931, '33', 'Stir-fried crab with curry powder', 'standard', NULL, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5040, 745, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5041, 745, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5042, 745, 1115, '123a', 'bottle singha beer', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5052, 748, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5053, 748, 946, '40', 'Fried shrimp', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5054, 748, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5055, 749, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5056, 749, 1140, '883', 'Jack Daniels ( s )', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5057, 749, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5064, 752, 898, '18b', 'Red curry (beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5065, 752, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5066, 753, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5067, 753, 897, '18a', 'Red curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5068, 753, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5069, 753, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5070, 753, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5071, 754, 1080, '153', 'Longan Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5072, 755, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5093, 756, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5094, 756, 871, '8e', 'Pad Thai (mixed)', 'standard', NULL, '10400.0000', '10400.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10400.0000', '', '10400.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5095, 756, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5096, 756, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5097, 756, 1053, '126', 'Sprite', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5098, 756, 1054, '127', 'Team Soda Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5131, 758, 1054, '127', 'Team Soda Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5132, 758, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5133, 759, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5134, 759, 884, '12', 'Baked shrimp with glass noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5135, 759, 931, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5136, 759, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5137, 759, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5138, 759, 1086, '159', 'Thai Tea', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5139, 759, 1093, '166', 'Lemon Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5140, 759, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5141, 760, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5142, 760, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5143, 760, 946, '40', 'Fried shrimp', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5144, 760, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5145, 760, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5146, 760, 864, '5', 'Tom yum fried rice', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5147, 760, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5151, 762, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26700.0000', '', '8900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5152, 762, 915, '25', 'Boiled chicken in fish sauce', 'standard', NULL, '7900.0000', '7900.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '31600.0000', '', '7900.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5153, 762, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '7.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '500.0000', NULL, 1, 'QTY', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5154, 763, 902, '19b', 'Panang curry (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5155, 763, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5156, 763, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5222, 768, 1115, '123a', 'bottle singha beer', 'standard', NULL, '5500.0000', '5500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '11000.0000', '', '5500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5223, 768, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5224, 768, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5225, 768, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5226, 768, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5227, 768, 893, '17a', 'Green curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5228, 768, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5229, 768, 959, '52', 'Sago pearls', 'standard', NULL, '4500.0000', '4500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13500.0000', '', '4500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5242, 769, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5243, 769, 882, '11c', 'Noodles in gravy sauce (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5244, 769, 1088, '161', 'Green Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5245, 769, 1086, '159', 'Thai Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5246, 769, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5247, 769, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5248, 769, 909, '22', 'Sour soup with fish', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5249, 769, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5250, 770, 1087, '160', 'Milk Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5251, 770, 892, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5252, 770, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5253, 770, 962, '55', 'Cendol in coconut milk', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5254, 771, 1143, '882', 'fried squid with garlic on rice', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5255, 771, 910, '23', 'Chicken, tofu and seaweed in clear soup', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5256, 771, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5272, 773, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5273, 773, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5354, 776, 1086, '159', 'Thai Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5355, 776, 1046, '119', 'Throphy Beer', 'standard', 0, '1800.0000', '1800.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5356, 776, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5357, 776, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5358, 776, 874, '9c', 'Stir-fried noodle with soy sauce (seafood)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5359, 776, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5360, 777, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5361, 777, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5362, 777, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5363, 777, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5364, 777, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '20000.0000', '20000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20000.0000', '', '20000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5365, 777, 857, '2', 'Lamb Biryani', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5366, 777, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5367, 777, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5368, 777, 1052, '125', 'Fanta', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5369, 777, 1088, '161', 'Green Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5370, 777, 1047, '120', 'Chang Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5371, 777, 1080, '153', 'Longan Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5372, 777, 1097, '170', 'Fresh Fruit Punch', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5391, 779, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5392, 779, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5393, 779, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5394, 779, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5395, 779, 1094, '167', 'Chapman', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5396, 779, 1125, '997', 'PINEAPPLE  FRIED RICE', 'standard', 0, '10500.0000', '10500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10500.0000', '', '10500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5436, 783, 864, '5', 'Tom yum fried rice', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5437, 783, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5438, 783, 946, '40', 'Fried shrimp', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5439, 783, 1075, '148', 'Chocolate Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5440, 783, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5451, 785, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5452, 785, 1016, '96', 'Gordon Gin Small', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5453, 785, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5454, 786, 945, '39', 'Hat Yai-style fried chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5455, 786, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5456, 786, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5457, 786, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5458, 786, 1091, '164', 'Water Melon Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5459, 786, 1092, '165', 'Strawberry Juice', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5460, 786, 1074, '147', 'Vanila Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5461, 786, 1076, '149', 'Strawberry Milkshake', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5462, 786, 1046, '119', 'Throphy Beer', 'standard', 0, '1800.0000', '1800.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5463, 786, 1088, '161', 'Green Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5533, 790, 1046, '119', 'Throphy Beer', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5534, 790, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5535, 790, 946, '40', 'Fried shrimp', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5536, 790, 911, '24', 'Tom Yum (shrimp/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5537, 790, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5538, 790, 945, '39', 'Hat Yai-style fried chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5600, 789, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5601, 789, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5602, 789, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5603, 789, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5604, 789, 1081, '154', 'Chrysanthemum Juice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5605, 789, 1079, '152', 'Chivita Active', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5606, 789, 1132, 'CIG', 'Cigarette', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5608, 795, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5609, 795, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5610, 795, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5611, 795, 1081, '154', 'Chrysanthemum Juice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5612, 795, 1079, '152', 'Chivita Active', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5613, 795, 1132, 'CIG', 'Cigarette', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5614, 795, 1144, '881', 'hollanddia yoghurt', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5631, 796, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5632, 796, 1126, '996', 'HOT TEA', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5633, 796, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5641, 797, 1097, '170', 'Fresh Fruit Punch', 'standard', NULL, '3000.0000', '3000.0000', '10.0000', 1, '0.0000', 1, '0', '0', '0.0000', '30000.0000', '', '3000.0000', NULL, 1, 'QTY', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5642, 797, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5643, 797, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '10.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '500.0000', NULL, 1, 'QTY', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5644, 797, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20700.0000', '', '6900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5645, 797, 946, '40', 'Fried shrimp', 'standard', NULL, '8900.0000', '8900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26700.0000', '', '8900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5646, 797, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', NULL, '5500.0000', '5500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '16500.0000', '', '5500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5647, 797, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26700.0000', '', '8900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5648, 797, 857, '2', 'Lamb Biryani', 'standard', NULL, '9900.0000', '9900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '29700.0000', '', '9900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5649, 797, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '3.0000', 1, '2427.2700', 3, '10%', '0', '0.0000', '26700.0000', '', '8900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5650, 797, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '15000.0000', '15000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '30000.0000', '', '15000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5651, 797, 1052, '125', 'Fanta', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5652, 798, 949, '43', 'Sun-dried beef', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5653, 798, 1049, '122', 'Leo Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5654, 799, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5657, 801, 1042, '115', 'Origin Bitters (75)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5679, 802, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5680, 802, 1087, '160', 'Milk Tea', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5681, 802, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5682, 803, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5683, 803, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5684, 803, 1061, '134', 'Pina Colada', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5685, 803, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5705, 805, 1058, '131', 'Bullet', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5710, 807, 987, '72', 'Carlo Rossi Red', 'standard', NULL, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5711, 807, 1029, '103b', 'Olmeca White (shot)', 'standard', NULL, '1500.0000', '1500.0000', '14.0000', 1, '0.0000', 1, '0', '0', '0.0000', '21000.0000', '', '1500.0000', NULL, 1, 'QTY', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5712, 807, 857, '2', 'Lamb Biryani', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5713, 807, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5714, 807, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5715, 807, 1145, '880', 'shisha', 'standard', NULL, '5000.0000', '5000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '5000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5716, 807, 1003, '85', '4th Street White', 'standard', NULL, '8000.0000', '8000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '8000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5717, 807, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5718, 807, 1058, '131', 'Bullet', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5719, 808, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5720, 808, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5726, 811, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5727, 811, 1048, '121', 'Chang Beer (Can)', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5728, 812, 863, '4e', 'Fried rice mixed', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5729, 812, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5730, 812, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5737, 814, 990, '74', 'Four Cousins Red', 'standard', NULL, '6500.0000', '6500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6500.0000', '', '6500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5738, 814, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5739, 814, 876, '10a', 'Stir-fried glass noodles (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5740, 814, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5741, 814, 864, '5', 'Tom yum fried rice', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5742, 815, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5743, 816, 1040, '113', 'Smirnoff Ice (Can)', 'standard', NULL, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5744, 816, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5916, 818, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '18000.0000', '', '4500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5917, 818, 1085, '158', 'Thai Iced Black Coffee', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5918, 818, 1097, '170', 'Fresh Fruit Punch', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5919, 818, 1071, '144', 'Malibu Sunset', 'standard', 0, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5920, 818, 1093, '166', 'Lemon Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5921, 818, 1080, '153', 'Longan Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5922, 818, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '7.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '500.0000', NULL, 1, 'QTY', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5923, 818, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20700.0000', '', '6900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5924, 818, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', 0, '5500.0000', '5500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '11000.0000', '', '5500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5925, 818, 943, '38c', 'Fried spring rolls (stuffed with vegetables)', 'standard', 0, '4500.0000', '4500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13500.0000', '', '4500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5926, 818, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5927, 818, 862, '4d', 'Fried rice with beef', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5928, 818, 940, '37d', 'Spicy chopped meat salad (beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5929, 818, 939, '37c', 'Spicy chopped meat salad (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5930, 818, 897, '18a', 'Red curry (chicken)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5931, 818, 859, '4a', 'Fried rice with chicken', 'standard', 0, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5932, 818, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5933, 818, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20700.0000', '', '6900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5934, 818, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5935, 818, 885, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5956, 819, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5980, 821, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5981, 821, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5982, 821, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5983, 821, 890, '15b', 'Noodles (beef)', 'standard', NULL, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5984, 821, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5985, 821, 1047, '120', 'Chang Beer', 'standard', NULL, '4500.0000', '4500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '22500.0000', '', '4500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5986, 821, 1115, '123a', 'bottle singha beer', 'standard', NULL, '5500.0000', '5500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '27500.0000', '', '5500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5987, 821, 958, '51', 'Pandan custard bread', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5988, 822, 937, '37a', 'Spicy minced (beef)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5989, 822, 949, '43', 'Sun-dried beef', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5990, 822, 911, '24', 'Tom Yum (shrimp/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5991, 822, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6006, 824, 861, '4c', 'Fried rice with seafood', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6007, 824, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6008, 824, 946, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6009, 824, 952, '46', 'Fried fish with three flavors sauce', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6010, 824, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '20000.0000', '20000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20000.0000', '', '20000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6011, 824, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', 0, '5500.0000', '5500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '11000.0000', '', '5500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6012, 824, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '8.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '500.0000', NULL, 1, 'QTY', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6013, 824, 1092, '165', 'Strawberry Juice', 'standard', NULL, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6019, 826, 987, '72', 'Carlo Rossi Red', 'standard', NULL, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6020, 826, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6037, 830, 932, '34', 'Spicy glass noodles salad', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6038, 830, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6039, 831, 958, '51', 'Pandan custard bread', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6040, 831, 919, '27c', 'Stir-fried with holy basil (beef)', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6041, 831, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6046, 832, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6047, 832, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6048, 832, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6049, 832, 1061, '134', 'Pina Colada', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6050, 833, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6051, 833, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6052, 833, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6053, 833, 893, '17a', 'Green curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6054, 833, 1081, '154', 'Chrysanthemum Juice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6055, 833, 1082, '155', 'Roselle Juice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6057, 835, 1036, '109', 'Guiness Stout (Big)', 'standard', NULL, '2700.0000', '2700.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2700.0000', '', '2700.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6058, 835, 1132, 'CIG', 'Cigarette', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6071, 837, 1091, '164', 'Water Melon Juice', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6073, 839, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6074, 839, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6075, 839, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6076, 839, 1042, '115', 'Origin Bitters (75)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6077, 840, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6078, 841, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6079, 841, 945, '39', 'Hat Yai-style fried chicken', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6080, 841, 1085, '158', 'Thai Iced Black Coffee', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6081, 841, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6082, 841, 858, '3', 'Steamed rice topped with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6083, 841, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6084, 841, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6085, 841, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6086, 841, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6087, 842, 864, '5', 'Tom yum fried rice', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6088, 842, 945, '39', 'Hat Yai-style fried chicken', 'standard', 0, '7900.0000', '7900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '23700.0000', '', '7900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6089, 842, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6090, 842, 1085, '158', 'Thai Iced Black Coffee', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6091, 842, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6092, 842, 959, '52', 'Sago pearls', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6093, 842, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6094, 842, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6097, 844, 1049, '122', 'Leo Beer', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6098, 844, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6099, 844, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6100, 844, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6108, 847, 931, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6109, 847, 897, '18a', 'Red curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6110, 847, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6111, 847, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6112, 847, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6116, 849, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6117, 849, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6118, 850, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6119, 850, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6129, 853, 1036, '109', 'Guiness Stout (Big)', 'standard', 0, '2700.0000', '2700.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2700.0000', '', '2700.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6130, 854, 885, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6131, 854, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6132, 854, 937, '37a', 'Spicy minced (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6133, 854, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6134, 854, 1093, '166', 'Lemon Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6135, 854, 1096, '169', 'Tropical Storm', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6136, 854, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6137, 854, 1075, '148', 'Chocolate Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6146, 856, 884, '12', 'Baked shrimp with glass noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6147, 856, 861, '4c', 'Fried rice with seafood', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6148, 856, 934, '35b', 'Spicy papaya salad (fermented fish)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6149, 856, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6150, 856, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6151, 857, 958, '51', 'Pandan custard bread', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6152, 857, 961, '54', 'Crispy red ruby', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6158, 860, 1126, '996', 'HOT TEA', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6159, 860, 1132, 'CIG', 'Cigarette', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6166, 863, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6167, 863, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6168, 863, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6238, 866, 861, '4c', 'Fried rice with seafood', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6239, 866, 1075, '148', 'Chocolate Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6240, 866, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6241, 866, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6242, 867, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6243, 867, 920, '27d', 'Stir-fried with holy basil (mixed meat)', 'standard', 0, '10400.0000', '10400.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10400.0000', '', '10400.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6244, 867, 1096, '169', 'Tropical Storm', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6245, 867, 1064, '137', 'Mojito', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6246, 867, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6247, 868, 952, '46', 'Fried fish with three flavors sauce', 'standard', 0, '20000.0000', '20000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20000.0000', '', '20000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6248, 868, 1145, '880', 'shisha', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6249, 868, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6250, 868, 1003, '85', '4th Street White', 'standard', 0, '8000.0000', '8000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '8000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6251, 868, 1058, '131', 'Bullet', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6252, 868, 1031, '104b', 'Sierra Tequila (shot)', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6253, 869, 1074, '147', 'Vanila Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6254, 869, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6255, 869, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6256, 870, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6257, 870, 1075, '148', 'Chocolate Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6258, 870, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6259, 865, 1041, '114', 'Origin Beer', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6265, 872, 916, '26', 'Stewed eggs', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6266, 872, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6267, 873, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6268, 873, 946, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6269, 873, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6270, 873, 1091, '164', 'Water Melon Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6271, 873, 1117, '185', 'FRENCH  FRIES', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6272, 873, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6273, 874, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '23700.0000', '', '7900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6274, 874, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6281, 876, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6282, 876, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6283, 876, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6284, 876, 1090, '163', 'Pineapple Juice', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6285, 876, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6286, 876, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6287, 877, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6288, 877, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6307, 879, 877, '10b', 'Stir-fried glass noodles (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6308, 879, 913, '24c', 'Tom Yum (seafood/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6309, 879, 1052, '125', 'Fanta', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6310, 879, 938, '37b', 'Spicy minced (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6311, 879, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6312, 879, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6313, 879, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6314, 880, 869, '8c', 'Pad Thai (seafood)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6315, 880, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6316, 880, 1088, '161', 'Green Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6330, 882, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6331, 882, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6332, 882, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6333, 882, 1066, '139', 'Mai Tai', 'standard', 0, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6334, 882, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6379, 884, 1126, '996', 'HOT TEA', 'standard', NULL, '4500.0000', '4500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13500.0000', '', '4500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6380, 884, 987, '72', 'Carlo Rossi Red', 'standard', NULL, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6381, 884, 885, '13', 'Chicken northern style curry noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6382, 884, 1132, 'CIG', 'Cigarette', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6383, 884, 957, '50b', 'Mixed set (small)', 'standard', NULL, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6384, 884, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '23700.0000', '', '7900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6385, 884, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6386, 885, 1008, '90', 'Hennessy Vs', 'standard', 0, '50000.0000', '50000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '50000.0000', '', '50000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6387, 885, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6388, 885, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6389, 886, 956, '50', 'Mixed set (large)', 'standard', 0, '30000.0000', '30000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '60000.0000', '', '30000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6390, 886, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6391, 886, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6392, 886, 1112, 'PR173', 'Ichitan orange', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6393, 887, 1013, '94', 'Remy Martin Vsop', 'standard', NULL, '72000.0000', '72000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '72000.0000', '', '72000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6394, 887, 1049, '122', 'Leo Beer', 'standard', NULL, '4500.0000', '4500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13500.0000', '', '4500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6395, 888, 982, '69', 'Red Label', 'standard', NULL, '12000.0000', '12000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '24000.0000', '', '12000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6396, 888, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '3000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6397, 888, 1097, '170', 'Fresh Fruit Punch', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6398, 888, 956, '50', 'Mixed set (large)', 'standard', 0, '30000.0000', '30000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '30000.0000', '', '30000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6399, 889, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6400, 890, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6420, 892, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6421, 892, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6422, 892, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6423, 892, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6424, 892, 962, '55', 'Cendol in coconut milk', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6425, 892, 949, '43', 'Sun-dried beef', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6426, 892, 1134, 'ICH', 'Ichitan green', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6427, 892, 1049, '122', 'Leo Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6428, 892, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6429, 893, 1087, '160', 'Milk Tea', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6430, 893, 1115, '123a', 'bottle singha beer', 'standard', NULL, '5500.0000', '5500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '16500.0000', '', '5500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6431, 893, 880, '11a', 'Noodles in gravy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6432, 893, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6433, 893, 885, '13', 'Chicken northern style curry noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6434, 893, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6446, 895, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6447, 895, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6448, 895, 931, '33', 'Stir-fried crab with curry powder', 'standard', NULL, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6449, 895, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6450, 895, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6451, 895, 1115, '123a', 'bottle singha beer', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6473, 898, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6474, 898, 885, '13', 'Chicken northern style curry noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6475, 898, 894, '17b', 'Green curry (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6476, 898, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6477, 898, 1046, '119', 'Throphy Beer', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6478, 898, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6479, 898, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6480, 898, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6483, 900, 880, '11a', 'Noodles in gravy sauce (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6484, 900, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6493, 901, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6494, 901, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6495, 901, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6496, 901, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6497, 902, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6498, 902, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6499, 902, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6500, 902, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6501, 902, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6513, 904, 914, '24d', 'Tom Yum (seafood/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6514, 904, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6515, 904, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6516, 904, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6517, 904, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '22500.0000', '', '4500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6518, 904, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '9.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '500.0000', NULL, 1, 'QTY', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6519, 904, 1147, '873', 'eggs sauce', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6520, 905, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6521, 905, 857, '2', 'Lamb Biryani', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6522, 905, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6523, 905, 1088, '161', 'Green Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6524, 905, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6549, 908, 910, '23', 'Chicken, tofu and seaweed in clear soup', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6550, 908, 873, '9b', 'Stir-fried noodle with soy sauce (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6551, 908, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6552, 908, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6610, 911, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6611, 911, 948, '42', 'Fried chicken wings', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6612, 911, 1053, '126', 'Sprite', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6613, 911, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6614, 911, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6615, 911, 1148, '872', 'Boiled and spicy', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6616, 911, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6645, 912, 911, '24', 'Tom Yum (shrimp/clear soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6646, 912, 915, '25', 'Boiled chicken in fish sauce', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6647, 912, 926, '30', 'Stir-fried mixed vegetables', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6648, 912, 936, '36', 'Spicy mixed seafood salad', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6649, 912, 931, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6650, 912, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6651, 912, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6652, 912, 1086, '159', 'Thai Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6653, 912, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6654, 912, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6655, 912, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6656, 912, 1047, '120', 'Chang Beer', 'standard', NULL, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6657, 913, 934, '35b', 'Spicy papaya salad (fermented fish)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6658, 913, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6659, 913, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6660, 913, 1047, '120', 'Chang Beer', 'standard', 0, '4500.0000', '4500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13500.0000', '', '4500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6661, 913, 937, '37a', 'Spicy minced (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6662, 913, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6663, 913, 1148, '872', 'Boiled and spicy', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6664, 913, 1115, '123a', 'bottle singha beer', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6665, 914, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6666, 914, 887, '14b', 'Rice noodles with coconut milk curry', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6667, 914, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6674, 916, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6675, 916, 946, '40', 'Fried shrimp', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6676, 916, 885, '13', 'Chicken northern style curry noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6677, 916, 1002, '84', 'Martinellis', 'standard', NULL, '9000.0000', '9000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '9000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6678, 916, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6679, 916, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6685, 918, 1149, '871', 'Hollandia yoghurt', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6686, 919, 1097, '170', 'Fresh Fruit Punch', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6687, 919, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6738, 924, 1060, '133', 'Margarita', 'standard', NULL, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6739, 924, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6740, 924, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '16000.0000', '', '4000.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6741, 924, 1067, '140', 'Cosmopolitan', 'standard', NULL, '4000.0000', '4000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '4000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6742, 924, 1061, '134', 'Pina Colada', 'standard', NULL, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6743, 925, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6744, 926, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '30000.0000', '', '15000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6745, 926, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6746, 926, 1087, '160', 'Milk Tea', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6747, 926, 932, '34', 'Spicy glass noodles salad', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6748, 926, 990, '74', 'Four Cousins Red', 'standard', NULL, '6500.0000', '6500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '6500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6749, 927, 1029, '103b', 'Olmeca White (shot)', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6750, 927, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6751, 927, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6815, 930, 864, '5', 'Tom yum fried rice', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6816, 930, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6823, 931, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6824, 931, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6852, 932, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6853, 932, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6854, 932, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6855, 932, 908, '21c', 'Massaman Curry (lamb)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6856, 932, 1076, '149', 'Strawberry Milkshake', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6857, 932, 1097, '170', 'Fresh Fruit Punch', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6858, 932, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6859, 932, 980, '68', 'Black Label', 'standard', 0, '27000.0000', '27000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '27000.0000', '', '27000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6860, 932, 1057, '130', 'Redbull', 'standard', 0, '2000.0000', '2000.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '2000.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6861, 932, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6862, 932, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6863, 933, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6864, 933, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6865, 933, 1042, '115', 'Origin Bitters (75)', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6866, 933, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6887, 934, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6888, 934, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6889, 935, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6890, 935, 1126, '996', 'HOT TEA', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6891, 935, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6892, 935, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6893, 935, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6894, 935, 1132, 'CIG', 'Cigarette', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6895, 936, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6896, 936, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6897, 936, 960, '53', 'Glutinous rice balls', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6898, 936, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6899, 936, 1010, '92', 'Regency Vsop', 'standard', 0, '85000.0000', '85000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '85000.0000', '', '85000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6900, 936, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6901, 936, 1150, '870', 'egg', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6902, 936, 1087, '160', 'Milk Tea', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6906, 938, 975, '63', 'Jameson Irish Whisky', 'standard', NULL, '32500.0000', '32500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '32500.0000', '', '32500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6907, 938, 1057, '130', 'Redbull', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6908, 938, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6909, 939, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6910, 939, 1151, '869', 'Steamed fish with lemon  { s }', 'standard', NULL, '1300.0000', '1300.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1300.0000', '', '1300.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6911, 939, 915, '25', 'Boiled chicken in fish sauce', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6912, 939, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6913, 939, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6914, 939, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6915, 939, 1085, '158', 'Thai Iced Black Coffee', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6916, 939, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6924, 941, 911, '24', 'Tom Yum (shrimp/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6925, 941, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6926, 941, 947, '41', 'Fried squid', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6927, 941, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6928, 941, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6929, 941, 1087, '160', 'Milk Tea', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6930, 941, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6931, 941, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6967, 943, 891, '15c', 'Noodles (Tom Yum)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6968, 943, 892, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6969, 943, 935, '35c', 'Spicy papaya salad (mixed ingrediets)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6970, 943, 1082, '155', 'Roselle Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6971, 943, 1081, '154', 'Chrysanthemum Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6972, 943, 960, '53', 'Glutinous rice balls', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6973, 943, 1134, 'ICH', 'Ichitan green', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6978, 945, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6979, 945, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6981, 947, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6988, 949, 1087, '160', 'Milk Tea', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6989, 949, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '13000.0000', '13000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13000.0000', '', '13000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6990, 949, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6991, 949, 937, '37a', 'Spicy minced (beef)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6997, 951, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6998, 951, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6999, 951, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7000, 951, 1041, '114', 'Origin Beer', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7017, 954, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7018, 954, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7019, 954, 908, '21c', 'Massaman Curry (lamb)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7020, 954, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7021, 954, 1036, '109', 'Guiness Stout (Big)', 'standard', NULL, '2700.0000', '2700.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2700.0000', '', '2700.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7022, 954, 1040, '113', 'Smirnoff Ice (Can)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7023, 954, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7027, 955, 1000, '82', 'Chandon', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7028, 955, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7029, 955, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7030, 955, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7031, 956, 1064, '137', 'Mojito', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7032, 956, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7033, 957, 1085, '158', 'Thai Iced Black Coffee', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7207, 960, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7208, 960, 1053, '126', 'Sprite', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7209, 960, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7210, 960, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7211, 960, 898, '18b', 'Red curry (beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7212, 960, 931, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7213, 960, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7214, 960, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', 0, '5500.0000', '5500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '11000.0000', '', '5500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7215, 960, 947, '41', 'Fried squid', 'standard', 0, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7216, 960, 913, '24c', 'Tom Yum (seafood/clear soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7217, 960, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7218, 960, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7219, 960, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7220, 960, 891, '15c', 'Noodles (Tom Yum)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7221, 960, 1054, '127', 'Team Soda Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7222, 960, 1087, '160', 'Milk Tea', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7223, 960, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7232, 961, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7233, 961, 892, '16', 'Noodles in red tofu clear soup', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7234, 961, 856, '1', 'Chicken Biryani', 'standard', 0, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7235, 961, 884, '12', 'Baked shrimp with glass noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7236, 961, 1086, '159', 'Thai Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7237, 961, 1082, '155', 'Roselle Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7238, 961, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7239, 961, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7240, 962, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7241, 962, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7242, 962, 889, '15a', 'Noodles (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7243, 962, 960, '53', 'Glutinous rice balls', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7244, 962, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7262, 964, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7263, 964, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7264, 964, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7265, 964, 1042, '115', 'Origin Bitters (75)', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7266, 964, 1123, '183', 'Double Black', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7267, 964, 990, '74', 'Four Cousins Red', 'standard', NULL, '6500.0000', '6500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6500.0000', '', '6500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7268, 965, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7536, 969, 1046, '119', 'Throphy Beer', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7537, 969, 1144, '881', 'hollanddia yoghurt', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7563, 970, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7591, 966, 1095, '168', 'After-glo', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7592, 966, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7593, 966, 1077, '150', 'Oreo Milkshake', 'standard', NULL, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7594, 966, 1097, '170', 'Fresh Fruit Punch', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7595, 966, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7596, 966, 1080, '153', 'Longan Juice', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7597, 966, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7598, 966, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7599, 966, 1055, '128', 'Maltina', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7600, 966, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '3.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '26700.0000', '', '8900.0000', NULL, 1, 'QTY', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7601, 966, 1049, '122', 'Leo Beer', 'standard', NULL, '4500.0000', '4500.0000', '7.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '31500.0000', '', '4500.0000', NULL, 1, 'QTY', '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 (7602, 966, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '2.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '19800.0000', '', '9900.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7603, 966, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '2500.0000', '', '500.0000', NULL, 1, 'QTY', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7604, 966, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '4.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '60000.0000', '', '15000.0000', NULL, 1, 'QTY', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7605, 966, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7606, 966, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7607, 966, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '4.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '27600.0000', '', '6900.0000', NULL, 1, 'QTY', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7608, 966, 1115, '123a', 'bottle singha beer', 'standard', NULL, '5500.0000', '5500.0000', '3.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '16500.0000', '', '5500.0000', NULL, 1, 'QTY', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7609, 966, 1054, '127', 'Team Soda Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7610, 966, 1057, '130', 'Redbull', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7611, 972, 1058, '131', 'Bullet', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7612, 972, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7613, 972, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7635, 974, 1046, '119', 'Throphy Beer', 'standard', NULL, '1800.0000', '1800.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3600.0000', '', '1800.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7636, 974, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7637, 975, 1058, '131', 'Bullet', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7652, 977, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7653, 977, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7654, 977, 949, '43', 'Sun-dried beef', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7655, 977, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7656, 977, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7657, 977, 1134, 'ICH', 'Ichitan green', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7658, 978, 880, '11a', 'Noodles in gravy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7659, 978, 881, '11b', 'Noodles in gravy sauce (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7660, 978, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7663, 980, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7664, 980, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7667, 982, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7668, 982, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7916, 987, 863, '4e', 'Fried rice mixed', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7917, 987, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7918, 987, 1043, '116', 'Hero', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7919, 987, 1077, '150', 'Oreo Milkshake', 'standard', NULL, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7920, 987, 1132, 'CIG', 'Cigarette', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7965, 989, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '30000.0000', '', '15000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7966, 989, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '3000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7967, 989, 1061, '134', 'Pina Colada', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7968, 989, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7969, 989, 1078, '151', 'Chi Exotic', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7970, 989, 990, '74', 'Four Cousins Red', 'standard', NULL, '6500.0000', '6500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6500.0000', '', '6500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7971, 989, 1076, '149', 'Strawberry Milkshake', 'standard', NULL, '5000.0000', '5000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '5000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7972, 989, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '23700.0000', '', '7900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7973, 989, 1052, '125', 'Fanta', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7974, 989, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7500.0000', '', '2500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7975, 989, 1049, '122', 'Leo Beer', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7976, 989, 1003, '85', '4th Street White', 'standard', NULL, '8000.0000', '8000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '8000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7977, 989, 1075, '148', 'Chocolate Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7978, 989, 1058, '131', 'Bullet', 'standard', NULL, '2000.0000', '2000.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7979, 989, 1016, '96', 'Gordon Gin Small', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7980, 989, 1072, '145', 'Long Island Iced Tea', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7981, 989, 1002, '84', 'Martinellis', 'standard', NULL, '9000.0000', '9000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '9000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7982, 989, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7983, 989, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7984, 990, 1054, '127', 'Team Soda Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7985, 990, 1057, '130', 'Redbull', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7986, 990, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7987, 990, 976, '64', 'Jameson 1780', 'standard', 0, '45000.0000', '45000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '45000.0000', '', '45000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7988, 990, 937, '37a', 'Spicy minced (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7989, 990, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7997, 991, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7998, 991, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7999, 991, 946, '40', 'Fried shrimp', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8000, 991, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8001, 991, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '35600.0000', '', '8900.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8002, 991, 915, '25', 'Boiled chicken in fish sauce', 'standard', NULL, '7900.0000', '7900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '23700.0000', '', '7900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8003, 991, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '12.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '500.0000', NULL, 1, 'QTY', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8004, 992, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8013, 994, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8014, 994, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8015, 994, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8016, 994, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8055, 998, 885, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8056, 998, 890, '15b', 'Noodles (beef)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8057, 998, 959, '52', 'Sago pearls', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8058, 998, 931, '33', 'Stir-fried crab with curry powder', 'standard', NULL, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8059, 998, 905, '20', 'Chicken leg curry', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8060, 998, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8061, 999, 953, '47', 'Fried fish with chili sauce', 'standard', NULL, '20000.0000', '20000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20000.0000', '', '20000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8062, 999, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8063, 999, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8067, 1001, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8068, 1001, 1076, '149', 'Strawberry Milkshake', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8069, 1001, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8070, 1001, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8071, 1001, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8079, 1003, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8080, 1003, 1054, '127', 'Team Soda Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8083, 1005, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8084, 1005, 1081, '154', 'Chrysanthemum Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8085, 1005, 953, '47', 'Fried fish with chili sauce', 'standard', 0, '15000.0000', '15000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '30000.0000', '', '15000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8086, 1005, 885, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8088, 1007, 1126, '996', 'HOT TEA', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8089, 1007, 957, '50b', 'Mixed set (small)', 'standard', 0, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8118, 1017, 913, '24c', 'Tom Yum (seafood/clear soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8119, 1017, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8120, 1017, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8121, 1017, 926, '30', 'Stir-fried mixed vegetables', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8122, 1017, 1080, '153', 'Longan Juice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8123, 1017, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8124, 1017, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8125, 1018, 938, '37b', 'Spicy minced (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8126, 1018, 953, '47', 'Fried fish with chili sauce', 'standard', NULL, '20000.0000', '20000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20000.0000', '', '20000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8127, 1018, 901, '19a', 'Panang curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8128, 1018, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8129, 1018, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8130, 1018, 1085, '158', 'Thai Iced Black Coffee', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8131, 1018, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8132, 1019, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8133, 1019, 936, '36', 'Spicy mixed seafood salad', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8143, 1022, 893, '17a', 'Green curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8144, 1022, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8145, 1022, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8146, 1022, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8147, 1022, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8148, 1022, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8169, 1020, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8170, 1020, 990, '74', 'Four Cousins Red', 'standard', NULL, '6500.0000', '6500.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '6500.0000', '', '6500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8171, 1020, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '5.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '15000.0000', '', '3000.0000', NULL, 1, 'QTY', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8186, 1026, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8187, 1026, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8188, 1026, 1090, '163', 'Pineapple Juice', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8249, 1027, 1060, '133', 'Margarita', 'standard', NULL, '3500.0000', '3500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '3500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8250, 1027, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8251, 1027, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8252, 1027, 1132, 'CIG', 'Cigarette', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8253, 1027, 1029, '103b', 'Olmeca White (shot)', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8254, 1024, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '26700.0000', '', '8900.0000', NULL, 1, 'QTY', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8255, 1024, 1097, '170', 'Fresh Fruit Punch', 'standard', NULL, '3000.0000', '3000.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '3000.0000', NULL, 1, 'QTY', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8256, 1024, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '39500.0000', '', '7900.0000', NULL, 1, 'QTY', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8257, 1024, 1078, '151', 'Chi Exotic', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8258, 1024, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8259, 1024, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20700.0000', '', '6900.0000', NULL, 1, 'QTY', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8260, 1024, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8261, 1024, 1058, '131', 'Bullet', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8262, 1024, 1079, '152', 'Chivita Active', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8263, 1024, 1006, '88', 'Four Cousin White', 'standard', NULL, '6300.0000', '6300.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6300.0000', '', '6300.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8264, 1024, 1002, '84', 'Martinellis', 'standard', NULL, '9000.0000', '9000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '9000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8265, 1024, 1094, '167', 'Chapman', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8266, 1024, 1023, '100b', 'Campari (shot)', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8267, 1024, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8268, 1028, 1145, '880', 'shisha', 'standard', NULL, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8269, 1028, 1058, '131', 'Bullet', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8271, 1029, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8277, 1030, 884, '12', 'Baked shrimp with glass noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8278, 1030, 919, '27c', 'Stir-fried with holy basil (beef)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8279, 1030, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8280, 1030, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8292, 1032, 872, '9a', 'Stir-fried noodle with soy sauce (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8293, 1032, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8294, 1032, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8295, 1032, 937, '37a', 'Spicy minced (beef)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8296, 1032, 1035, '108', 'Heineken', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8297, 1033, 964, '56b', 'Bacardi White (shot)', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8298, 1033, 1048, '121', 'Chang Beer (Can)', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8299, 1034, 1153, '875', 'AGOR', 'standard', 0, '7500.0000', '7500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7500.0000', '', '7500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8300, 1035, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8318, 1038, 906, '21a', 'Massaman Curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8319, 1038, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8320, 1038, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8321, 1038, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8322, 1036, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8323, 1036, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8324, 1036, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8325, 1036, 868, '8b', 'Pad Thai (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8326, 1036, 1096, '169', 'Tropical Storm', 'standard', NULL, '2500.0000', '2500.0000', '4.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '10000.0000', '', '2500.0000', NULL, 1, 'QTY', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8327, 1036, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', NULL, '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8340, 1041, 948, '42', 'Fried chicken wings', 'standard', NULL, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8341, 1041, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8342, 1041, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8343, 1041, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8359, 1042, 885, '13', 'Chicken northern style curry noodles', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8360, 1042, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8361, 1042, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8362, 1042, 1074, '147', 'Vanila Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8363, 1042, 1076, '149', 'Strawberry Milkshake', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8364, 1042, 1094, '167', 'Chapman', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8365, 1042, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8378, 1044, 941, '38a', 'Fried spring rolls (stuffed with chicken)', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8379, 1044, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8380, 1044, 901, '19a', 'Panang curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8381, 1044, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8382, 1044, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8383, 1044, 1082, '155', 'Roselle Juice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8384, 1044, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8418, 1049, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8419, 1049, 1081, '154', 'Chrysanthemum Juice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8420, 1049, 893, '17a', 'Green curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8421, 1049, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8422, 1049, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8423, 1049, 1080, '153', 'Longan Juice', 'standard', NULL, '2000.0000', '2000.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '2000.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8424, 1049, 1088, '161', 'Green Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8425, 1049, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8426, 1048, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 1, 'QTY', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8427, 1048, 898, '18b', 'Red curry (beef)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8428, 1048, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8552, 1052, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8553, 1052, 1089, '162', 'Orange Juice', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8554, 1052, 1077, '150', 'Oreo Milkshake', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8555, 1052, 1049, '122', 'Leo Beer', 'standard', 0, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8556, 1052, 1035, '108', 'Heineken', 'standard', 0, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8557, 1052, 906, '21a', 'Massaman Curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8558, 1052, 863, '4e', 'Fried rice mixed', 'standard', 0, '6900.0000', '6900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '13800.0000', '', '6900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8559, 1052, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8560, 1052, 912, '24b', 'Tom Yum (shrimp/creamy soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8561, 1052, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '29700.0000', '', '9900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8562, 1052, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8563, 1052, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '1500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8564, 1052, 1114, 'PR1001', 'Fried egg', 'standard', 0, '500.0000', '500.0000', '6.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '500.0000', NULL, 1, 'QTY', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8565, 1052, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8566, 1052, 917, '27a', 'Stir-fried with holy basil (chicken)', 'standard', 0, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8567, 1053, 892, '16', 'Noodles in red tofu clear soup', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8568, 1053, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8569, 1054, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8570, 1054, 858, '3', 'Steamed rice topped with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8571, 1054, 867, '8a', 'Pad Thai (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8576, 1056, 868, '8b', 'Pad Thai (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8577, 1056, 886, '14', 'Rice noodles with fish curry', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8578, 1056, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8579, 1056, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8585, 1058, 950, '44', 'Deep fried chicken rolls (8 pcs)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8586, 1058, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8587, 1058, 958, '51', 'Pandan custard bread', 'standard', NULL, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8588, 1058, 1076, '149', 'Strawberry Milkshake', 'standard', NULL, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8589, 1058, 1077, '150', 'Oreo Milkshake', 'standard', NULL, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8590, 1058, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8591, 1058, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8592, 1058, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8595, 1060, 866, '7', 'Sticky rice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8612, 1063, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8613, 1063, 861, '4c', 'Fried rice with seafood', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8614, 1063, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8615, 1063, 1075, '148', 'Chocolate Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8616, 1064, 957, '50b', 'Mixed set (small)', 'standard', NULL, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8617, 1064, 1132, 'CIG', 'Cigarette', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8618, 1064, 1126, '996', 'HOT TEA', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8619, 1064, 860, '4b', 'Fried rice with shrimps', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8620, 1064, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8621, 1065, 1058, '131', 'Bullet', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8641, 1068, 996, '78', 'Escudo Rojo', 'standard', NULL, '7000.0000', '7000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7000.0000', '', '7000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8642, 1068, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8643, 1068, 956, '50', 'Mixed set (large)', 'standard', NULL, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8644, 1069, 953, '47', 'Fried fish with chili sauce', 'standard', NULL, '20000.0000', '20000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '20000.0000', '', '20000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8645, 1069, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8646, 1069, 986, '71', 'Two oceans', 'standard', NULL, '8000.0000', '8000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '8000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8647, 1069, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8648, 1070, 916, '26', 'Stewed eggs', 'standard', NULL, '7900.0000', '7900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15800.0000', '', '7900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8726, 1072, 949, '43', 'Sun-dried beef', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8727, 1072, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8728, 1072, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8729, 1072, 866, '7', 'Sticky rice', 'standard', 0, '2000.0000', '2000.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8000.0000', '', '2000.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8730, 1072, 1075, '148', 'Chocolate Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8731, 1072, 1076, '149', 'Strawberry Milkshake', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8732, 1072, 1086, '159', 'Thai Tea', 'standard', 0, '2000.0000', '2000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8733, 1072, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8734, 1072, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8735, 1072, 893, '17a', 'Green curry (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8736, 1072, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8737, 1072, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8749, 1074, 908, '21c', 'Massaman Curry (lamb)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8750, 1074, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8751, 1074, 1015, '95b', 'Gordon Gin (shot)', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8752, 1074, 1053, '126', 'Sprite', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8753, 1074, 859, '4a', 'Fried rice with chicken', 'standard', 0, '7900.0000', '7900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '23700.0000', '', '7900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8754, 1074, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8755, 1074, 1071, '144', 'Malibu Sunset', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8773, 1077, 933, '35', 'Spicy papaya salad (Thai style)', 'standard', NULL, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8774, 1077, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8775, 1077, 859, '4a', 'Fried rice with chicken', 'standard', NULL, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8776, 1077, 893, '17a', 'Green curry (chicken)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8777, 1077, 908, '21c', 'Massaman Curry (lamb)', 'standard', NULL, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8778, 1077, 1089, '162', 'Orange Juice', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8779, 1077, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8780, 1077, 1051, '124', 'Coca Cola', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8781, 1077, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8784, 1079, 996, '78', 'Escudo Rojo', 'standard', NULL, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8785, 1080, 856, '1', 'Chicken Biryani', 'standard', NULL, '8090.9100', '8900.0000', '1.0000', 1, '809.0900', 3, '10%', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8786, 1080, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8787, 1081, 1155, '4V', 'Fried rice with vegetable ', 'standard', NULL, '5900.0000', '5900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5900.0000', '', '5900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8788, 1081, 1156, '18V', 'Red curry with vegetable', 'standard', NULL, '5900.0000', '5900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5900.0000', '', '5900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8789, 1081, 865, '6', 'Rice', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8790, 1081, 1086, '159', 'Thai Tea', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8793, 1083, 1126, '996', 'HOT TEA', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8794, 1083, 1082, '155', 'Roselle Juice', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8800, 1086, 1042, '115', 'Origin Bitters (75)', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8826, 1088, 931, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8827, 1088, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8828, 1088, 1075, '148', 'Chocolate Milkshake', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8829, 1088, 1029, '103b', 'Olmeca White (shot)', 'standard', 0, '1500.0000', '1500.0000', '12.0000', 1, '0.0000', 1, '0', '0', '0.0000', '18000.0000', '', '1500.0000', NULL, 1, 'QTY', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8830, 1088, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8846, 1092, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '17800.0000', '', '8900.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8847, 1092, 946, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8848, 1092, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8849, 1092, 1003, '85', '4th Street White', 'standard', 0, '9000.0000', '9000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '9000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8875, 1094, 1062, '135', 'Tequila Sunrise', 'standard', 0, '3500.0000', '3500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8876, 1094, 1072, '145', 'Long Island Iced Tea', 'standard', 0, '4000.0000', '4000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8877, 1094, 947, '41', 'Fried squid', 'standard', 0, '6900.0000', '6900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6900.0000', '', '6900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8878, 1094, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8879, 1094, 1157, 'PR10012', 'chicken and chip', 'standard', 0, '6500.0000', '6500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6500.0000', '', '6500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8880, 1094, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8881, 1094, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8886, 1095, 956, '50', 'Mixed set (large)', 'standard', 0, '15000.0000', '15000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '15000.0000', '', '15000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8887, 1095, 1117, '185', 'FRENCH  FRIES', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8888, 1095, 1126, '996', 'HOT TEA', 'standard', 0, '4500.0000', '4500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9000.0000', '', '4500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8889, 1095, 957, '50b', 'Mixed set (small)', 'standard', 0, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8890, 1096, 1059, '132', 'Bottle Water', 'standard', NULL, '500.0000', '500.0000', '4.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 1, 'QTY', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8904, 1098, 864, '5', 'Tom yum fried rice', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8905, 1098, 911, '24', 'Tom Yum (shrimp/clear soup)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8906, 1098, 920, '27d', 'Stir-fried with holy basil (mixed meat)', 'standard', 0, '10400.0000', '10400.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10400.0000', '', '10400.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8907, 1098, 931, '33', 'Stir-fried crab with curry powder', 'standard', 0, '10200.0000', '10200.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10200.0000', '', '10200.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8908, 1098, 1092, '165', 'Strawberry Juice', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8909, 1098, 1090, '163', 'Pineapple Juice', 'standard', 0, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8910, 1098, 1111, 'PR999', 'TAKE AWAY', 'standard', NULL, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8928, 1100, 942, '38b', 'Fried spring rolls (stuffed with shrimp)', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8929, 1100, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8930, 1100, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8931, 1100, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8932, 1100, 1051, '124', 'Coca Cola', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8933, 1100, 1086, '159', 'Thai Tea', 'standard', 0, '2000.0000', '2000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8934, 1100, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8939, 1102, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '29700.0000', '', '9900.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8940, 1102, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8941, 1102, 1059, '132', 'Bottle Water', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8942, 1102, 1077, '150', 'Oreo Milkshake', 'standard', 0, '5000.0000', '5000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8957, 1104, 932, '34', 'Spicy glass noodles salad', 'standard', 0, '7900.0000', '7900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '7900.0000', '', '7900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8958, 1104, 860, '4b', 'Fried rice with shrimps', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8959, 1104, 954, '48', 'Beef hot pan', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8960, 1104, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8961, 1104, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '3.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 1, 'QTY', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8962, 1104, 1115, '123a', 'bottle singha beer', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8966, 1106, 1111, 'PR999', 'TAKE AWAY', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8967, 1106, 871, '8e', 'Pad Thai (mixed)', 'standard', 0, '10400.0000', '10400.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10400.0000', '', '10400.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8968, 1106, 946, '40', 'Fried shrimp', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8997, 1110, 885, '13', 'Chicken northern style curry noodles', 'standard', NULL, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8998, 1110, 959, '52', 'Sago pearls', 'standard', NULL, '4500.0000', '4500.0000', '5.0000', 1, '0.0000', 1, '0', '0', '0.0000', '22500.0000', '', '4500.0000', NULL, 1, 'QTY', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8999, 1111, 1074, '147', 'Vanila Milkshake', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9074, 1114, 867, '8a', 'Pad Thai (chicken)', 'standard', 0, '8900.0000', '8900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '8900.0000', '', '8900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9075, 1114, 918, '27b', 'Stir-fried with holy basil (shrimp)', 'standard', 0, '9900.0000', '9900.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '9900.0000', '', '9900.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9076, 1114, 1015, '95b', 'Gordon Gin (shot)', 'standard', 0, '1500.0000', '1500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9077, 1114, 1054, '127', 'Team Soda Water', 'standard', 0, '500.0000', '500.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9078, 1114, 957, '50b', 'Mixed set (small)', 'standard', 0, '10000.0000', '10000.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '10000.0000', '', '10000.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9079, 1114, 1115, '123a', 'bottle singha beer', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '5500.0000', '', '5500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9080, 1114, 865, '6', 'Rice', 'standard', 0, '1500.0000', '1500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9081, 1114, 1159, 'PR11109', 'schweppes tonic water ', 'standard', 0, '500.0000', '500.0000', '1.0000', 1, '0.0000', 1, '0', '0', '0.0000', '500.0000', '', '500.0000', NULL, 1, 'QTY', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9082, 1114, 1097, '170', 'Fresh Fruit Punch', 'standard', 0, '3000.0000', '3000.0000', '2.0000', 1, '0.0000', 1, '0', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 1, 'QTY', '2.0000', '', NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_sales
#

DROP TABLE IF EXISTS `sma_sales`;

CREATE TABLE `sma_sales` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `reference_no` varchar(55) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `customer` varchar(55) NOT NULL,
  `biller_id` int(11) NOT NULL,
  `biller` varchar(55) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `staff_note` varchar(1000) DEFAULT NULL,
  `total` decimal(25,4) NOT NULL,
  `product_discount` decimal(25,4) DEFAULT 0.0000,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `total_discount` decimal(25,4) DEFAULT 0.0000,
  `order_discount` decimal(25,4) DEFAULT 0.0000,
  `product_tax` decimal(25,4) DEFAULT 0.0000,
  `order_tax_id` int(11) DEFAULT NULL,
  `order_tax` decimal(25,4) DEFAULT 0.0000,
  `total_tax` decimal(25,4) DEFAULT 0.0000,
  `shipping` decimal(25,4) DEFAULT 0.0000,
  `service_charge` 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=1115 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1, '2023-10-15 18:23:42', 'SALE/POS2023/10/0001', 1, 'Walk-in Customer', 3, 'Test Biller', 1, '', '', '22500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '22500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '22500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b89faee5c3db26eb102e99f8addc34fdc45d300559a51072e52584c42ef1e32f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2, '2023-10-15 19:08:09', 'SALE/POS2023/10/0002', 1, 'Walk-in Customer', 3, 'Test Biller', 1, '', '', '21800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '21800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '21800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c92b1a8eb0a040ad7c265fce3da1b836f37649d96428385b064bfdbcdc95c48', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3, '2023-10-15 19:08:35', 'SALE/POS2023/10/0003', 1, 'Walk-in Customer', 3, 'Test Biller', 1, '', '', '7900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '7900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '7900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05efb398f884a01a31632a36139c02c78f95c93b4fdd9adacf3dfc6e2e92aff4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (4, '2023-10-17 11:14:32', 'SALE/POS2023/10/0004', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16181.8200', '0.0000', '', '0.0000', '0.0000', '1618.1800', 4, '1335.0000', '2953.1800', '0.0000', '0.0000', '19135.0000', 'completed', 'due', 0, NULL, 1, NULL, NULL, 2, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b28bc29b5714ab46497266921a69eda2e8141a757c51590f35ef6383ff142fb0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (5, '2023-10-18 12:05:04', 'SALE/POS2023/10/0005', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8090.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '667.5000', '1476.5900', '0.0000', '0.0000', '9567.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '9567.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1cdcf625f2a40aa1994ddefec3eb38e9087cbf7f5b31afda347d90f0aaf2562', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (6, '2023-10-18 20:08:30', 'SALE/POS2023/10/0006', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '23700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1777.5000', '1777.5000', '0.0000', '0.0000', '25477.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '25477.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e1d7f4fc9a1fcc3ee0e70b06580de4bd25799496d3e21fdfa1ddf216ab051a97', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (7, '2023-10-18 20:24:10', 'SALE/POS2023/10/0007', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '68700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '5152.5000', '5152.5000', '0.0000', '0.0000', '73852.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '73852.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bac284ba1e4044fe93b54f788b730f527aa645636b04c485df0d3f522fd535d8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (8, '2023-10-18 20:26:21', 'SALE/POS2023/10/0008', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '21700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1627.5000', '1627.5000', '0.0000', '0.0000', '23327.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '23327.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f71c5d9b5a040fa549199f731cc169972bfb88c760f8da88a52a6c3673c17e34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (9, '2023-10-18 20:45:14', 'SALE/POS2023/10/0009', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '24700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '24700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4bfb7e18a042b9786513eb8e6f4f9f79796a39860810f1b39f88eb85a918b3a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (10, '2023-10-18 20:45:52', 'SALE/POS2023/10/0010', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '20900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', '20900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '20900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd398990f86d9e010cbcc0feb0d725e93df39beaffc69ac8e326bb8bb293807ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (11, '2023-10-18 20:46:12', 'SALE/POS2023/10/0011', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '375.0000', '375.0000', '0.0000', '0.0000', '5375.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '5375.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d3e916ddf01341256a01423ea849465b0a94733a4d142d060cba04c0882fe16', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (12, '2023-10-19 14:35:36', 'SALE/POS2023/10/0012', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '0.0000', '2150.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '2150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26e190d2811632573616a20b2ca2450cbd1fba314901cb1af8f31dd64d42b809', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (13, '2023-10-19 14:50:32', 'SALE/POS2023/10/0013', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '73490.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '5572.5000', '6381.5900', '0.0000', '0.0000', '79872.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 15, 1, '79872.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '37939e79ca26e0619999f495903627ed30b274435185ae5d19d220ec605c2fe2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (14, '2023-10-19 15:00:38', 'SALE/POS2023/10/0014', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9090.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '742.5000', '1551.5900', '0.0000', '0.0000', '10642.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 3, 1, '10642.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '92558e12b1fc8685d2a1168d4140a15a757fe089a79fe8cc378b39668b092849', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (15, '2023-10-19 17:40:34', 'SALE/POS2023/10/0015', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '667.5000', '667.5000', '0.0000', '0.0000', '9567.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '9567.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2fc5f191cdf47e993f99258bd2cfb49765e06b238ba57253ed0e57cc6a62055f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (16, '2023-10-19 17:41:56', 'SALE/POS2023/10/0016', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '517.5000', '517.5000', '0.0000', '0.0000', '7417.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '7417.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '512d8e02e3a6dc4c162df08e66d5b282be650627e50698385658a3717ccd6459', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (17, '2023-10-19 19:19:45', 'SALE/POS2023/10/0017', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29272.7300', '0.0000', '', '0.0000', '0.0000', '2427.2700', 4, '2377.5000', '4804.7700', '0.0000', '0.0000', '34077.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 7, 1, '34077.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25b137f01ba556a47187144065874b0efd2c14909ac8eb5694b46fd46b79dc26', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (18, '2023-10-19 19:40:12', 'SALE/POS2023/10/0018', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '99000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '7425.0000', '7425.0000', '0.0000', '0.0000', '106425.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 18, 1, '106425.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c5537d0b85ff31dfa9995ca437ea9d6e3ebcbe516ebfd69d5c9f6b2b6cfba22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (19, '2023-10-19 19:47:50', 'SALE/POS2023/10/0019', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '662800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '49710.0000', '49710.0000', '0.0000', '0.0000', '712510.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 58, 1, '712510.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e20b9eb891712839293efb6e9e9b14317eab728da6433f7741ac327d4663a864', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (20, '2023-10-19 19:53:55', 'SALE/POS2023/10/0020', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '262.5000', '262.5000', '0.0000', '0.0000', '3762.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 2, 1, '3762.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2edd35b74608581dfa45a3cce6a462cacf0c666ab4124385aeaaa4d4fa0f4fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (21, '2023-10-19 19:54:49', 'SALE/POS2023/10/0021', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '487.5000', '487.5000', '0.0000', '0.0000', '6987.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 2, 1, '6987.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89921d887ae082bad9a993fbe94346f69d205326b3b0cdc9617bd76894beb43b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (22, '2023-10-19 20:00:21', 'SALE/POS2023/10/0022', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1312.5000', '1312.5000', '0.0000', '0.0000', '18812.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 7, 1, '18812.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a9d7ba00567bf7c4cfd5b3c4236c31f3974395c15b349369f5e4e0c0dc30925f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (23, '2023-10-19 20:25:56', 'SALE/POS2023/10/0023', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '0.0000', '4300.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 3, 1, '4300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f1ea76016dc7b51beef126d6e54dfc259d972bebb9b85a2bf482a39383e281a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (24, '2023-10-19 20:26:52', 'SALE/POS2023/10/0024', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1192.5000', '1192.5000', '0.0000', '0.0000', '17092.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 7, 1, '17092.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76e0364d579c3626020aa642ad547dd65428ac515d5696d88aebd73123901f9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (25, '2023-10-19 20:29:53', 'SALE/POS2023/10/0025', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '41290.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '3157.5000', '3966.5900', '0.0000', '0.0000', '45257.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 9, 1, '45257.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2fc12a529f39c5d34b86e689f384d8fee15436a8cf992912b509fe3bbb7be3cb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (26, '2023-10-19 20:36:54', 'SALE/POS2023/10/0026', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '39200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2940.0000', '2940.0000', '0.0000', '0.0000', '42140.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 8, 1, '42140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1584a67651fa4340844555bc9fdc7b11577d5c6293d759d0787e8125bf8c637e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (27, '2023-10-19 20:46:28', 'SALE/POS2023/10/0027', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '112.5000', '112.5000', '0.0000', '0.0000', '1612.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 3, 1, '1612.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89e6a694480e323e7b5704ee70a1f79a8e8c48882b00586c54e8f06baaee9b97', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (28, '2023-10-19 21:04:07', 'SALE/POS2023/10/0028', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '13900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1042.5000', '1042.5000', '0.0000', '0.0000', '14942.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 3, 1, '14942.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af12a29aafd3181f224d585e909ded3b3d8c55d2111a736ccc58d2c2372da293', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (29, '2023-10-19 21:09:20', 'SALE/POS2023/10/0029', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '450.0000', '450.0000', '0.0000', '0.0000', '6450.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 2, 1, '6450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8722afd4f8d2396fc639daed434ccce5fd72e854d75be0d2abbf7e5b8b0fc3ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (30, '2023-10-19 21:10:28', 'SALE/POS2023/10/0030', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2235.0000', '2235.0000', '0.0000', '0.0000', '32035.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 3, 1, '32035.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01512a3a44f778139d61664606508c6fe0adb4c052cd5e02daa737ca10ff2fd8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (31, '2023-10-19 21:12:01', 'SALE/POS2023/10/0031', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '0.0000', '3225.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '3225.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aaf6f7038caf2d6711c8f6acd1f018164fa80154213ae908410d1bb577c4b2c0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (32, '2023-10-19 21:12:51', 'SALE/POS2023/10/0032', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '101500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '7612.5000', '7612.5000', '0.0000', '0.0000', '109112.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 19, 1, '109112.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd66d669d4e63c1a8acf02b6b47fa62010c0612f882fb20223e80609b7cfb7afd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (33, '2023-10-19 21:15:51', 'SALE/POS2023/10/0033', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '0.0000', '537.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '537.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa9d0d49f48868ac3350a82324946fd52e904110dbff25bdfe17c5980a6cbc78', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (34, '2023-10-19 21:23:13', 'SALE/POS2023/10/0034', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1380.0000', '1380.0000', '0.0000', '0.0000', '19780.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 4, 1, '19780.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcebeb25e048280aee3b83f77bb84b398a23926d67c92527490a3d5c5d3d56f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (35, '2023-10-19 21:40:07', 'SALE/POS2023/10/0035', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '162300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '12172.5000', '12172.5000', '0.0000', '0.0000', '174472.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 41, 1, '174472.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5c5adb290c059d0e59fed93d11d6870689d73e333f53ab4cad8e35fdaad590bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (36, '2023-10-19 21:45:51', 'SALE/POS2023/10/0036', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '13400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1005.0000', '1005.0000', '0.0000', '0.0000', '14405.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 4, 1, '14405.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e57f502ad6b1aa95915e5f80f25c0e7fd96d9de32096b30cac5900a43df27505', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (37, '2023-10-19 21:46:43', 'SALE/POS2023/10/0037', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '900.0000', '900.0000', '0.0000', '0.0000', '12900.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 4, 1, '12900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc42dcc57f9766ef29f7bbbe6b250d59ba03c22ebb130965bb7b06003cc06cb5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (38, '2023-10-19 21:47:22', 'SALE/POS2023/10/0038', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1185.0000', '1185.0000', '0.0000', '0.0000', '16985.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 2, 1, '16985.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7711adcdcbbb641e52e1867eaa70e400dac08b4fc08c8fa3c4c605048ada3cad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (39, '2023-10-19 22:04:40', 'SALE/POS2023/10/0039', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '35900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2692.5000', '2692.5000', '0.0000', '0.0000', '38592.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 6, 1, '38592.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4fe0307bd971cc1ee60c2f42d0b9c094950015703b7c3370e2fab81e3d070aac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (40, '2023-10-19 22:05:23', 'SALE/POS2023/10/0040', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '0.0000', '3225.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '3225.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6cf9edb82c9fbd13238d58a4140abf8943b359eb99070569a9bc9be5eee1749', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (41, '2023-10-19 22:08:08', 'SALE/POS2023/10/0041', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '7900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '592.5000', '592.5000', '0.0000', '0.0000', '8492.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '8492.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1893e4a5c8485a14fdafa1769ebdd55bfe033099fb3650a6585de9f2d304507', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (42, '2023-10-19 22:19:58', 'SALE/POS2023/10/0042', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '487.5000', '487.5000', '0.0000', '0.0000', '6987.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 2, 1, '6987.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e46b845122b995b18ca0eef3b7f6b4952c48cd683572f67830abdad8cf06371', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (43, '2023-10-19 22:20:27', 'SALE/POS2023/10/0043', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '675.0000', '675.0000', '0.0000', '0.0000', '9675.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 3, 1, '9675.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '686057fa913324714340be38ee254d5b69614b5c93909a4407672755128caaab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (44, '2023-10-19 22:24:15', 'SALE/POS2023/10/0044', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '667.5000', '667.5000', '0.0000', '0.0000', '9567.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '9567.5000', 45, '0.0000', NULL, 'SR2023/10/0001', NULL, '-9567.5000', '0.0000', NULL, 0, 0, NULL, NULL, '978ae68198c160ce2beafb4314c5990563a99e66bf699bbce8b3a6295409fee6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (45, '2023-10-19 22:24:00', 'SALE/POS2023/10/0044', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', NULL, '-8900.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '-667.5000', '-667.5000', '0.0000', '0.0000', '-9567.5000', 'returned', 'paid', NULL, NULL, 1, NULL, NULL, NULL, 1, '-9567.5000', NULL, '0.0000', '0', 'SR2023/10/0001', 44, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (46, '2023-10-19 22:34:27', 'SALE/POS2023/10/0045', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '28500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2137.5000', '2137.5000', '0.0000', '0.0000', '30637.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 10, 1, '30637.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a93fb5cdd473986583b91a8c1fa1579d04d6b65217e1741169dff243c0063d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (47, '2023-10-19 23:11:17', 'SALE/POS2023/10/0046', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '21800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1635.0000', '1635.0000', '0.0000', '0.0000', '23435.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 4, 1, '23435.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a01d5c804a6715da50fe1bd1f6a7eddc09303b0afd3c551a586399a14c6bd81e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (48, '2023-10-20 14:55:14', 'SALE/POS2023/10/0047', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '75.0000', '75.0000', '0.0000', '0.0000', '1075.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1075.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '416a2ac33e9928fa9339e8b8f6a7f03aa38f24cfcd00b24f7f65eadb2890806d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (49, '2023-10-20 17:50:04', 'SALE/POS2023/10/0048', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '108200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '8115.0000', '8115.0000', '0.0000', '0.0000', '116315.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 19, 1, '116315.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15da81f801788d0a5a21aff4bdba32424edcc75a1932f84888d9308a2e66e4ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (50, '2023-10-20 17:52:25', 'SALE/POS2023/10/0049', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '0.0000', '537.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '537.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e4332541a2ea4506fb5ea5f54a2124ab955b585e5e8aa3388a891ee935ab0a54', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (51, '2023-10-20 18:37:27', 'SALE/POS2023/10/0050', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '42000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3150.0000', '3150.0000', '0.0000', '0.0000', '45150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '45150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01dc7dd33800397fdc74a0d1f5aff6140ee8e09891a2f0f927ed1bb65fb4240b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (52, '2023-10-20 18:38:08', 'SALE/POS2023/10/0051', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '450.0000', '450.0000', '0.0000', '0.0000', '6450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '6450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70b19a2cebb3e881a30c217a2d4096d4a6730961a1cd9908e632f5e4e2ea8034', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (53, '2023-10-20 18:54:38', 'SALE/POS2023/10/0052', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '517.5000', '517.5000', '0.0000', '0.0000', '7417.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '7417.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e19230347dd0e40c561a76db95f713cdbed6097d263d25588b56375924d5d1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (54, '2023-10-20 22:13:48', 'SALE/POS2023/10/0053', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, 'over', '', '90400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '6780.0000', '6780.0000', '0.0000', '0.0000', '97180.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 17, 1, '97180.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '810a249bf354790f2051e73661f6ee6b61b80bc754e0cee261e818f54de6fe5f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (55, '2023-10-20 22:17:32', 'SALE/POS2023/10/0054', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '667.5000', '667.5000', '0.0000', '0.0000', '9567.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '9567.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fc677580b2564797b73863b82b1ffc093af1f4ff4c66cb575d65888f32bd946d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (56, '2023-10-20 22:59:18', 'SALE/POS2023/10/0055', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '757.5000', '757.5000', '0.0000', '0.0000', '10857.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '10857.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b192451dd35346d57df857e474e43aa3605e792a4196f4a3fb0a7740059281c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (57, '2023-10-20 23:00:12', 'SALE/POS2023/10/0056', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '0.0000', '2150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2e007c7e4c94f23c77146de83d911d86512cc4b118c32019b27075363c3db2d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (58, '2023-10-20 23:01:32', 'SALE/POS2023/10/0057', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27390.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2115.0000', '2924.0900', '0.0000', '0.0000', '30315.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '30315.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78c37d6da0ea6ab01ebb28c9ce173a3f224a4a7daadc22d26e00eae6d857f741', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (59, '2023-10-20 23:39:03', 'SALE/POS2023/10/0058', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '44400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3330.0000', '3330.0000', '0.0000', '0.0000', '47730.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '47730.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0946724758d13b68a8edbb065a24abbe131aa751268510e527e408c58b3a65d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (60, '2023-10-21 11:34:39', 'SALE/POS2023/10/0059', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '675.0000', '675.0000', '0.0000', '0.0000', '9675.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '9675.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2bfe1c30d96684d9e79f3cc2039ea034b2837157c07c5dc989df65e0c8008b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (61, '2023-10-21 12:43:10', 'SALE/POS2023/10/0060', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1260.0000', '1260.0000', '0.0000', '0.0000', '18060.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '18060.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b0c81f3aca24da92cce5c67d8f2ce4bfbe508e48ff816d568df7e3b60f979bc6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (62, '2023-10-21 12:43:29', 'SALE/POS2023/10/0061', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '58600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4395.0000', '4395.0000', '0.0000', '0.0000', '62995.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '62995.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14f7d5567df7dc0f415416bfcea3a5b24994929d02869cffee7893f71bb93996', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (63, '2023-10-21 16:48:35', 'SALE/POS2023/10/0062', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '0.0000', '537.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '537.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9311075f58156f7744bde7e2d782c95346dfcc0482de1623147ee43ec9de189d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (64, '2023-10-21 16:51:42', 'SALE/POS2023/10/0063', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1297.5000', '1297.5000', '0.0000', '0.0000', '18597.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '18597.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b4d0b276c4e63cbbdb85d61a93cb5e3b9f953fd8682f9fd2379482b5a7e6bd7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (65, '2023-10-21 18:27:50', 'SALE/POS2023/10/0064', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '87200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '6540.0000', '6540.0000', '0.0000', '0.0000', '93740.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 20, 1, '93740.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cfe77b30d36aa6837aa320664a25f70f7ff3db19efb35bfa93b6ffd403a7a914', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (66, '2023-10-21 18:35:26', 'SALE/POS2023/10/0065', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1410.0000', '1410.0000', '0.0000', '0.0000', '20210.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '20210.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23ff5ab9bb410e56ac483ecdec108c6a51f22dfa31fe2fb53d6431ce010dbc75', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (67, '2023-10-22 12:25:15', 'SALE/POS2023/10/0066', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '188200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '14115.0000', '14115.0000', '0.0000', '0.0000', '202315.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 51, 1, '202315.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '161adbac728ce07bf467657681ff91f85c9e260b8167237d75e454e77eff4c12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (68, '2023-10-22 12:42:00', 'SALE/POS2023/10/0067', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '112.5000', '112.5000', '0.0000', '0.0000', '1612.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1612.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba21c766b6e5b21e33dd35067f8255bf070637b0f7184b1f1f278695cdee2c94', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (69, '2023-10-22 13:18:28', 'SALE/POS2023/10/0068', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '19800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1485.0000', '1485.0000', '0.0000', '0.0000', '21285.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '21285.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02296d7a8da715b84b3c8af56ae43e399878772b93d25a37f6e5789f352010fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (70, '2023-10-22 14:30:27', 'SALE/POS2023/10/0069', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1350.0000', '1350.0000', '0.0000', '0.0000', '19350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '19350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a8e608645f4d5e1b73406a771014e1d40f8376e21e47748384cb776a4145349', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (71, '2023-10-22 16:30:25', 'SALE/POS2023/10/0070', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1222.5000', '1222.5000', '0.0000', '0.0000', '17522.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '17522.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '580c93cb173547f37267333d7f045d2a965e136ea7996477a7b6e05c3891fbef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (72, '2023-10-22 17:05:57', 'SALE/POS2023/10/0071', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '7000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '525.0000', '525.0000', '0.0000', '0.0000', '7525.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '7525.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c255b987e0441b1ff559690cd25b9fd1ba784d370b44a1573c5ad620f8a1701', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (73, '2023-10-22 17:26:08', 'SALE/POS2023/10/0072', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1185.0000', '1185.0000', '0.0000', '0.0000', '16985.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '16985.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5aaa4ab2115af9ce546d915755e2ab12d5482d448ce7afb2aab06e1cb69d05e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (74, '2023-10-22 18:22:58', 'SALE/POS2023/10/0073', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '52000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3900.0000', '3900.0000', '0.0000', '0.0000', '55900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '55900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5584304fe2d554e67a7eed13302be3ef9afb880a4f72327d6e1beccf182e0313', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (75, '2023-10-22 19:39:47', 'SALE/POS2023/10/0074', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '517.5000', '517.5000', '0.0000', '0.0000', '7417.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '7417.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0153c14f5863397d476b949a6fc8e847e44bee006b6d5b780d4761405713ec1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (76, '2023-10-22 20:10:59', 'SALE/POS2023/10/0075', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '25990.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2010.0000', '2819.0900', '0.0000', '0.0000', '28810.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '28810.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4e30165fa4905e03ede7edff09d1ced7508e795a63ba9b3cda19513e72cb28b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (77, '2023-10-22 20:52:50', 'SALE/POS2023/10/0076', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1860.0000', '1860.0000', '0.0000', '0.0000', '26660.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '26660.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db7de5b8e0634f42ee3b6eb1660ca892ab7ca1556881605e522e0719d79db3f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (78, '2023-10-22 21:32:55', 'SALE/POS2023/10/0077', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '132100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '9907.5000', '9907.5000', '0.0000', '0.0000', '142007.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 31, 1, '142007.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c5cc13a084639d7c751b7d9e3a67b04ed54ba35b25527a1726b403816987bde', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (79, '2023-10-22 21:35:06', 'SALE/POS2023/10/0078', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '23300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1747.5000', '1747.5000', '0.0000', '0.0000', '25047.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '25047.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b9d838f9cc0ada18eb97900409c46319072e4459f6ce82e5bf8ef7a1561572c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (80, '2023-10-22 21:36:27', 'SALE/POS2023/10/0079', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2197.5000', '2197.5000', '0.0000', '0.0000', '31497.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '31497.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5c90848a449ed529527d805f256f4b09be4ff989abb23b80feed4d0b478ece58', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (81, '2023-10-23 11:06:29', 'SALE/POS2023/10/0080', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '600.0000', '600.0000', '0.0000', '0.0000', '8600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '8600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3404773af4f085010b25bf57f64a0049d277c2962d87f2bdf3286b2e7672fa45', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (82, '2023-10-23 11:08:41', 'SALE/POS2023/10/0081', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '630.0000', '630.0000', '0.0000', '0.0000', '9030.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '9030.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af1aa9f38e1e1009b4dd69c17bb26fd245c84787ed98f508cd41f8c8addba02b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (83, '2023-10-23 11:39:16', 'SALE/POS2023/10/0082', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '0.0000', '537.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '537.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9cd6b0063855e4a3fccf8371fe5079d104c425aa3cb90255be2f05e0160b5909', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (84, '2023-10-23 12:19:17', 'SALE/POS2023/10/0083', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1260.0000', '1260.0000', '0.0000', '0.0000', '18060.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '18060.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '083cbd21459ea45b811cc78dacf050f78611961595df46985e00b2d65712db07', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (85, '2023-10-23 12:32:43', 'SALE/POS2023/10/0084', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '94390.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '7140.0000', '7949.0900', '0.0000', '0.0000', '102340.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 27, 1, '102340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7d3e379851b846afd8853c5806be25cd1df7df1aed2dbf693d1b00844ab588ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (86, '2023-10-23 15:28:45', 'SALE/POS2023/10/0085', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '675.0000', '675.0000', '0.0000', '0.0000', '9675.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '9675.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ef4de6d174aeb4ef955f6db6bb386a263ddc2e0315acf680f693846f7c665ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (87, '2023-10-23 19:00:28', 'SALE/POS2023/10/0086', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '51300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3847.5000', '3847.5000', '0.0000', '0.0000', '55147.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '55147.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6976d73be6b3754b8019c8358d692d9a2c6a2addba2a226e20bfe577f00f1538', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (88, '2023-10-23 22:02:43', 'SALE/POS2023/10/0087', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '43600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3270.0000', '3270.0000', '0.0000', '0.0000', '46870.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '46870.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db5827f936f5725c1a99134dfdff591ddba491d7f79fd07ad1e10a64e8720d24', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (89, '2023-10-23 22:05:04', 'SALE/POS2023/10/0088', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '0.0000', '3225.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '3225.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c4d658f911e902f63f8e30e83af7a6ef1f7dadd723a23ac38f60d483ff5ef09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (90, '2023-10-23 22:24:01', 'SALE/POS2023/10/0089', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '55900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4192.5000', '4192.5000', '0.0000', '0.0000', '60092.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 15, 1, '60092.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca02e81677e59f77cec0f1ee67764fea298fda49e622645ab1733a16b2daf5a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (91, '2023-10-23 23:29:44', 'SALE/POS2023/10/0090', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '25081.8200', '0.0000', '', '0.0000', '0.0000', '1618.1800', 4, '2002.5000', '3620.6800', '0.0000', '0.0000', '28702.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '28702.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35ded039e7f57c29dba734c17cc8868f68002cc0a22053da815bdaf63e0b6636', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (92, '2023-10-23 23:34:50', 'SALE/POS2023/10/0091', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '177200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '13290.0000', '13290.0000', '0.0000', '0.0000', '190490.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '190490.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5068e2ff804e7fec155e3aafd9b76c25a4ed9ac7e5be04c20421d45dfb851421', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (93, '2023-10-23 23:36:41', 'SALE/POS2023/10/0092', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1852.5000', '1852.5000', '0.0000', '0.0000', '26552.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '26552.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c20a700dd77c90bf52d18525bf7da5fe4804dc5df54912d2bfe81af5aa9398c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (94, '2023-10-23 23:38:39', 'SALE/POS2023/10/0093', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '30900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2317.5000', '2317.5000', '0.0000', '0.0000', '33217.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '33217.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a23be79d10b8faa0f15130033d641ff1c83cb9280381d89b7b14b5a78544ae8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (95, '2023-10-23 23:44:22', 'SALE/POS2023/10/0094', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '104690.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '7912.5000', '8721.5900', '0.0000', '0.0000', '113412.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '113412.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96aa9ef625d2eadd34c1e4a4ab93bab5e974750be2afbefd1f08f378ee36a039', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (96, '2023-10-23 23:46:19', 'SALE/POS2023/10/0095', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '22400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1680.0000', '1680.0000', '0.0000', '0.0000', '24080.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '24080.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05c7c3705d11b759eb7287f6675f41cdc795c22111bd9c2a9b47ddf450d896aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (97, '2023-10-24 12:35:15', 'SALE/POS2023/10/0096', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1305.0000', '1305.0000', '0.0000', '0.0000', '18705.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '18705.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e824dc79b833ae9c9a7f1db66cf5c3549d60d6d8f3f0614dce2716f3b03d6c9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (98, '2023-10-24 13:51:31', 'SALE/POS2023/10/0097', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '705.0000', '705.0000', '0.0000', '0.0000', '10105.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '10105.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a2c881dc76c0937d4c2c4f100032be11b517f90febfdded7b33f3ef87638695', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (99, '2023-10-24 19:21:54', 'SALE/POS2023/10/0098', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '41190.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '3150.0000', '3959.0900', '0.0000', '0.0000', '45150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '45150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4545c21de431a2b5e63e93f00376f00137b8a39d6c85d8b8956cf0e8e56f253f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (100, '2023-10-24 19:24:02', 'SALE/POS2023/10/0099', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '21800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1635.0000', '1635.0000', '0.0000', '0.0000', '23435.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '23435.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4710585f5cfbbc8fe047902621a443fc72330c943ecd98d3167e5c34085c32d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (101, '2023-10-24 19:25:43', 'SALE/POS2023/10/0100', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '0.0000', '4300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96737c04f42bf8901719fc3280d58d93ccbd8e32c81a87e6ccd751d9510edf1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (102, '2023-10-24 20:01:24', 'SALE/POS2023/10/0101', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '36600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2745.0000', '2745.0000', '0.0000', '0.0000', '39345.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '39345.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef9619f93ea1002d5735fda9d42bfd19fac25fe48a508f5349328630464358e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (103, '2023-10-24 21:11:48', 'SALE/POS2023/10/0102', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '0.0000', '537.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '537.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '741f97313278222bff404a18d7e3b2f6bbf746e8652d12b68ccb5e976aa63d59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (104, '2023-10-24 21:26:20', 'SALE/POS2023/10/0103', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '705.0000', '705.0000', '0.0000', '0.0000', '10105.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '10105.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61ab6ecd36072bb8c6cf7701a0339697d1fe6b9b9bd95139d275939d5cf94767', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (105, '2023-10-24 22:44:09', 'SALE/POS2023/10/0104', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1305.0000', '1305.0000', '0.0000', '0.0000', '18705.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '18705.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a715f8ab0c27038bdd0b1e1f4ae64706a71b7585766e35ec5e3295851827cd3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (106, '2023-10-24 23:52:07', 'SALE/POS2023/10/0105', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '23000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1725.0000', '1725.0000', '0.0000', '0.0000', '24725.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '24725.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2bfb68959d64331d221ded7b8268d19772bb918b2fb3540988942b97e5c76af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (107, '2023-10-25 18:11:06', 'SALE/POS2023/10/0106', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '11000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '825.0000', '825.0000', '0.0000', '0.0000', '11825.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '11825.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1eb485414cb0123e9f202b5d65c74eb419a363fe5115938843baf95c37c48db2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (108, '2023-10-25 19:24:50', 'SALE/POS2023/10/0107', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '38600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2895.0000', '2895.0000', '0.0000', '0.0000', '41495.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '41495.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6671770b8c01259a0c620475078e739b393a35ba7ef1ba5a2331bd184ba89fc8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (109, '2023-10-25 19:52:37', 'SALE/POS2023/10/0108', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '11000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '825.0000', '825.0000', '0.0000', '0.0000', '11825.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '11825.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a9cb4788d1635e06379883fbefbbfed80c3ed8d3c43fbbee68f817cb6cdcb74b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (110, '2023-10-25 19:54:37', 'SALE/POS2023/10/0109', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1200.0000', '1200.0000', '0.0000', '0.0000', '17200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '17200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b334e7d85a732974ea626b321b773d3ea817513472a438e5fa754649e9bd058a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (111, '2023-10-25 20:27:32', 'SALE/POS2023/10/0110', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '817.5000', '817.5000', '0.0000', '0.0000', '11717.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '11717.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96b5dc781e8f0e7f059931485f2843629199a428c70d242a19f8909f70fe0cb8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (112, '2023-10-25 21:02:20', 'SALE/POS2023/10/0111', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '0.0000', '3225.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '3225.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b117363dfe241650a9b710d5ad6974b03ec4db5331222852b568034f97cc1a27', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (113, '2023-10-25 23:16:59', 'SALE/POS2023/10/0112', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1867.5000', '1867.5000', '0.0000', '0.0000', '26767.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '26767.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c65c50956eb41dc67d195d4d6f80fd5972428a8c80197e767bd969428574b67', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (114, '2023-10-25 23:19:08', 'SALE/POS2023/10/0113', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '14800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1110.0000', '1110.0000', '0.0000', '0.0000', '15910.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '15910.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f650e05e5cfb52921237e48a2ac35180cc986d5fda8782e5a30633b44000e27', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (115, '2023-10-25 23:21:28', 'SALE/POS2023/10/0114', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '667.5000', '667.5000', '0.0000', '0.0000', '9567.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '9567.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'acde7c29f3f4e806b1bba0f2735979343db0c7f8505504eb796fc1d2729e2819', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (116, '2023-10-26 13:30:53', 'SALE/POS2023/10/0115', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1185.0000', '1185.0000', '0.0000', '0.0000', '16985.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '16985.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a70d781425aa859e48c77f89a2af4d4e04dc6bc9e3b182ca26041f4120c0e78', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (117, '2023-10-26 15:21:40', 'SALE/POS2023/10/0116', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '19700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1477.5000', '1477.5000', '0.0000', '0.0000', '21177.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '21177.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '98f2ef272fae8bea71250da4ebc1a56c377f9f344c6217ea6c8a3b7ec8dddb12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (118, '2023-10-26 17:06:40', 'SALE/POS2023/10/0117', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '56200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4215.0000', '4215.0000', '0.0000', '0.0000', '60415.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '60415.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6ff2010c9a15500c8bab7cc09d1d2603682065a074799f9ad46b6d8377cb80d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (119, '2023-10-26 17:30:52', 'SALE/POS2023/10/0118', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2055.0000', '2055.0000', '0.0000', '0.0000', '29455.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '29455.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2bd645a5abf16c003da6a6c1d27280d22de921ee969d009633ef0fc5ba01b8e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (120, '2023-10-26 18:15:47', 'SALE/POS2023/10/0119', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '855.0000', '855.0000', '0.0000', '0.0000', '12255.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '12255.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '457692f6ff732abbd535a1837164e2572eaffecc399a1ca4dc379b5f5f71a65e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (121, '2023-10-26 18:27:15', 'SALE/POS2023/10/0120', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '64781.8200', '0.0000', '', '0.0000', '0.0000', '1618.1800', 4, '4980.0000', '6598.1800', '0.0000', '0.0000', '71380.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 16, 1, '71380.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c84beda15d72dfc06b4c4b0656b68829fe2f5b5903fae999fe72780a0afc2d41', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (122, '2023-10-26 19:52:57', 'SALE/POS2023/10/0121', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '125190.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '9450.0000', '10259.0900', '0.0000', '0.0000', '135450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '135450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7adbbaa706bdda55215a32a41b9bb25f2735243618b05f4321b4a647ec457ed4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (123, '2023-10-26 21:07:37', 'SALE/POS2023/10/0122', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '0.0000', '537.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '537.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e45834ee4e3e6bed373e80350917cc730d8a049ec55f89228977dfd24f9392b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (124, '2023-10-26 21:32:31', 'SALE/POS2023/10/0123', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '37790.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2895.0000', '3704.0900', '0.0000', '0.0000', '41495.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '41495.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36ace5ae10205c0305b7a1c7ebbd50ff9a58774154b0f9bb92609821723691ae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (125, '2023-10-26 21:37:17', 'SALE/POS2023/10/0124', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '675.0000', '675.0000', '0.0000', '0.0000', '9675.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '9675.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89aa38ab2c7033cb0485f392dfde7b3e2b51869eca0e823253db3fd39baef09a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (126, '2023-10-27 12:18:08', 'SALE/POS2023/10/0125', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '450.0000', '450.0000', '0.0000', '0.0000', '6450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '6450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '313d77c618df50510b1f431a47ca59cd7072e9075793a82c667f5578c59bd0c0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (127, '2023-10-27 17:34:45', 'SALE/POS2023/10/0126', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1710.0000', '1710.0000', '0.0000', '0.0000', '24510.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '24510.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e1d75454d03efdebe85207556de440566fdeb3cf31bb5b6a8337f540d31312fe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (128, '2023-10-27 17:57:12', 'SALE/POS2023/10/0127', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '54100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4057.5000', '4057.5000', '0.0000', '0.0000', '58157.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '58157.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '68ebc92336a01f835c9b4033e0fd337a38a967b65943a8bdb39683d57974c1df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (129, '2023-10-27 18:37:34', 'SALE/POS2023/10/0128', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1275.0000', '1275.0000', '0.0000', '0.0000', '18275.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '18275.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b0bfbcc9531eab2784d59f18da69cc9c0bf2961c2313dfb2fd4d53d7cb7bde8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (130, '2023-10-27 19:42:36', 'SALE/POS2023/10/0129', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '46800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3510.0000', '3510.0000', '0.0000', '0.0000', '50310.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '50310.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76cab2d0a0688fe24e4126dfa1bcbc70a4128b23e1c7b6f288dca8ee77bd9323', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (131, '2023-10-27 20:10:08', 'SALE/POS2023/10/0130', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '34690.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2662.5000', '3471.5900', '0.0000', '0.0000', '38162.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '38162.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c9efe54bcb3a774c09e1b428df5d650d8b32fcae9362d26b92ed0f0df47bab3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (132, '2023-10-27 20:56:14', 'SALE/POS2023/10/0131', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '262.5000', '262.5000', '0.0000', '0.0000', '3762.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '3762.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '716e6196fe569d8881ac8c617d3b707dd802d4104df99a9e895720f36d9bb47c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (133, '2023-10-27 21:56:50', 'SALE/POS2023/10/0132', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '487.5000', '487.5000', '0.0000', '0.0000', '6987.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '6987.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2444ddc658a29ae925f831262b3409b70f0e8944e06258a8f0a9b44a1c9fb7a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (134, '2023-10-27 22:02:31', 'SALE/POS2023/10/0133', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '66400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4980.0000', '4980.0000', '0.0000', '0.0000', '71380.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '71380.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb2240a24bc709b51ef15e64f761d0ad63177da3207cd462531a5be207fabf07', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (135, '2023-10-27 23:08:57', 'SALE/POS2023/10/0134', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '42481.8200', '0.0000', '', '0.0000', '0.0000', '1618.1800', 4, '3307.5000', '4925.6800', '0.0000', '0.0000', '47407.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '47407.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d1d0a7ad430cb999e3d3196b25467f503c88fdc39dcbf39de8519f9ef9aa2a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (136, '2023-10-27 23:09:50', 'SALE/POS2023/10/0135', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '36300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2722.5000', '2722.5000', '0.0000', '0.0000', '39022.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '39022.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '000ca53bfb6591fa76e88b356dbc2d68f5ea17a8b476ff93b87bf0a1e5e6810e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (137, '2023-10-27 23:24:15', 'SALE/POS2023/10/0136', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '675.0000', '675.0000', '0.0000', '0.0000', '9675.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '9675.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99d20eb486df7506876da1b2b30e18f08c01a86d2e704773b3766807f29de675', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (138, '2023-10-27 23:26:13', 'SALE/POS2023/10/0137', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '22000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1650.0000', '1650.0000', '0.0000', '0.0000', '23650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '23650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b307c4b07efdb5e940f92aa376599c70254345179ca899414f94eb2f1779069d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (139, '2023-10-28 14:37:01', 'SALE/POS2023/10/0138', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '21800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1635.0000', '1635.0000', '0.0000', '0.0000', '23435.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 4, 1, '23435.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd67fa38d45150aa74d7f56495aa2faf271a8dfacfe5771c0e1a7c2f28a64b80', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (140, '2023-10-28 14:45:35', 'SALE/POS2023/10/0139', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '247700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '18577.5000', '18577.5000', '0.0000', '0.0000', '266277.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 42, 1, '266277.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd9101e10ee3a79ab5ed43e7b96f8f8a436abf5d02bb562b573b5f89928d04e44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (141, '2023-10-28 14:51:03', 'SALE/POS2023/10/0140', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '26700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2002.5000', '2002.5000', '0.0000', '0.0000', '28702.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 3, 1, '28702.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0576fbc4532a39f77b27d723aff64a904558088c3b6eb447168c32d4b65d132e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (142, '2023-10-28 15:43:25', 'SALE/POS2023/10/0141', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '55000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4125.0000', '4125.0000', '0.0000', '0.0000', '59125.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 14, 1, '59125.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0076054f06856871451b1c9cbf70933aa471304480027f509b5d93a44e1562f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (143, '2023-10-28 16:30:59', 'SALE/POS2023/10/0142', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '42500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3187.5000', '3187.5000', '0.0000', '0.0000', '45687.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 16, 1, '45687.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd1c4b82c58fb06eae53b4cdbd6d4d7d181fbeea3660b206418d9c85a5e3acad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (144, '2023-10-28 16:32:56', 'SALE/POS2023/10/0143', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1125.0000', '1125.0000', '0.0000', '0.0000', '16125.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '16125.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '518520e4d2b00da4093e2a00e6a31ed84dca869cc35db52ef120f650d804cd23', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (145, '2023-10-28 19:23:09', 'SALE/POS2023/10/0144', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '78090.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '5917.5000', '6726.5900', '0.0000', '0.0000', '84817.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 15, 1, '84817.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10ced642fb58889b6389ec2608111dec63bfb037e020a50005078a1aebe6b146', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (146, '2023-10-28 19:27:24', 'SALE/POS2023/10/0145', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '0.0000', '2150.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '2150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '704b00517ab91d8c977bfb0ceb46eacf3c449057b0570a04ebb579b92bb5abee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (147, '2023-10-28 19:59:02', 'SALE/POS2023/10/0146', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '705.0000', '705.0000', '0.0000', '0.0000', '10105.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 2, 1, '10105.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60cad3bbfaa5f742424e10b5e1b7169177fe02e8d0cb5a6906f635f541c71e6b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (148, '2023-10-28 21:21:31', 'SALE/POS2023/10/0147', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '48190.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '3675.0000', '4484.0900', '0.0000', '0.0000', '52675.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 10, 1, '52675.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '310f654457363b0e04e29f651cb8f2f30c5804bf3e37eaf604c318f49a33e1ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (149, '2023-10-28 21:21:58', 'SALE/POS2023/10/0148', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '900.0000', '900.0000', '0.0000', '0.0000', '12900.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 6, 1, '12900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f01e216b5412555285bf3183157f1500d416161ec1bca5a285d7477cf8358e47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (150, '2023-10-28 21:26:54', 'SALE/POS2023/10/0149', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '450.0000', '450.0000', '0.0000', '0.0000', '6450.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 2, 1, '6450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14f7e44447469ecc1762aeb54bc5ee3e343967385f4639f3093eb5750055d5a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (151, '2023-10-28 21:28:08', 'SALE/POS2023/10/0150', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '43000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3225.0000', '3225.0000', '0.0000', '0.0000', '46225.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 6, 1, '46225.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07ab9f23544443a757d782accc249ad61bd9e3ff9e28d74feea3af1ec30d71c1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (152, '2023-10-28 21:53:21', 'SALE/POS2023/10/0151', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '14400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1080.0000', '1080.0000', '0.0000', '0.0000', '15480.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 2, 1, '15480.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13f2ef9c1aae87b1e9f2d259f925b20a45d9c1a0e0fa7cee9b165254d859aff9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (153, '2023-10-28 23:13:40', 'SALE/POS2023/10/0152', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '187.5000', '187.5000', '0.0000', '0.0000', '2687.5000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 3, 1, '2687.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36036c777bfe33a8f5e68ffeab4799cccdcbda257410da09fd2f04a0a03f29ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (154, '2023-10-28 23:15:12', 'SALE/POS2023/10/0153', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1350.0000', '1350.0000', '0.0000', '0.0000', '19350.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 6, 1, '19350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0beca1e2c13cde3659bfa419d6dc8993faef36bc4da591f209349d341085091f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (155, '2023-10-28 23:15:39', 'SALE/POS2023/10/0154', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '23000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1725.0000', '1725.0000', '0.0000', '0.0000', '24725.0000', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 3, 1, '24725.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '641da3dfa70c64ceb8168ffaebbfd8095e34e50838c2bc3782be4215ba5c1dac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (156, '2023-10-29 14:17:14', 'SALE/POS2023/10/0155', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '51100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3832.5000', '3832.5000', '0.0000', '0.0000', '54932.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '54932.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c4741c5337ac242298f2dfd91ac5410d4117ee1344145e31e84c1f105d8eadcb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (157, '2023-10-29 14:31:41', 'SALE/POS2023/10/0156', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '60100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4507.5000', '4507.5000', '0.0000', '0.0000', '64607.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '64607.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fbabdcaac84722794713867275881df7d3a91e42b493e6172e9c80d2ada5fd74', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (158, '2023-10-29 15:09:57', 'SALE/POS2023/10/0157', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1410.0000', '1410.0000', '0.0000', '0.0000', '20210.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '20210.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f2cc8271da3dfa6dd3a3a701f384378ed198e4692b8bd1efb72b721d62dcf46', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (159, '2023-10-29 17:29:21', 'SALE/POS2023/10/0158', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '0.0000', '4300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8264ca3e24a4be37609bc44f51d4f11c1bfa5bd8c233742961c3c121a46e1be7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (160, '2023-10-29 17:29:53', 'SALE/POS2023/10/0159', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '70900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '5317.5000', '5317.5000', '0.0000', '0.0000', '76217.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '76217.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81ed73faa8136328533219cfb559633a94cd669f59b603c6c908ed18056fbcb0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (161, '2023-10-29 17:30:34', 'SALE/POS2023/10/0160', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '787.5000', '787.5000', '0.0000', '0.0000', '11287.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '11287.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b46d543a97308e65bbb74f116a91175e31fbdeb8c17b550bf7108a3833055109', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (162, '2023-10-29 17:39:58', 'SALE/POS2023/10/0161', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18990.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '1485.0000', '2294.0900', '0.0000', '0.0000', '21285.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '21285.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2eebf3c9f3a5c85a15e9885477501a6d5be3489ec18cb1a1194b8e7f99fc957', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (163, '2023-10-29 18:17:18', 'SALE/POS2023/10/0162', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '37800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2835.0000', '2835.0000', '0.0000', '0.0000', '40635.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '40635.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e1bf1cf6d9525c1216683e7110697f1c701a09f2986e224a27fce2a9204eb3ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (164, '2023-10-29 18:41:03', 'SALE/POS2023/10/0163', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1335.0000', '1335.0000', '0.0000', '0.0000', '19135.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '19135.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76a283073ca387ffc6a704aa51ca5d65b737791c83ee3907ebef4f0a42b1980e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (166, '2023-10-29 19:48:54', 'SALE/POS2023/10/0164', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '36000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2700.0000', '2700.0000', '0.0000', '0.0000', '38700.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '38700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2aa3413e88e7bdc4cd6d7a19c1fdbc2d1e77d933b6dc3eff86930849c99a067f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (168, '2023-10-29 19:59:46', 'SALE/POS2023/10/0165', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '23000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1725.0000', '1725.0000', '0.0000', '0.0000', '24725.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '24725.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2d752dee078b9c6640b7196bae48688a9b6083642a974622d8676c444e8f50d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (169, '2023-10-29 20:04:31', 'SALE/POS2023/10/0166', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2047.5000', '2047.5000', '0.0000', '0.0000', '29347.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '29347.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad0b46ba0dacbac22a6e8e842c6c3008179741b175d54a2af3c26daa24c91924', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (170, '2023-10-29 20:06:34', 'SALE/POS2023/10/0167', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '0.0000', '537.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '537.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82e88a6b63f19b509988e967608e46fdbcd9a8e4d21a2f8efd77a3c67f57c649', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (172, '2023-10-29 20:20:16', 'SALE/POS2023/10/0168', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '262.5000', '262.5000', '0.0000', '0.0000', '3762.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '3762.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9857a1bf5a67f42f9f3fbba43cf31c9d0d88cef44487fbec3716dbfcec80c479', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (173, '2023-10-29 20:24:50', 'SALE/POS2023/10/0169', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '26700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2002.5000', '2002.5000', '0.0000', '0.0000', '28702.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 7, 1, '28702.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07bb66b3fc221f7b30319e3baecfc887baf833a7ec21a291ee87d4e5c5426678', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (174, '2023-10-29 20:31:18', 'SALE/POS2023/10/0170', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '106100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '7957.5000', '7957.5000', '0.0000', '0.0000', '114057.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 11, 1, '114057.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd679150e67c9c5a3a206aaa29a9102e7ab85fe9cf0755f799e18e6a13fe2ec4d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (175, '2023-10-29 20:48:48', 'SALE/POS2023/10/0171', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '900.0000', '900.0000', '0.0000', '0.0000', '12900.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '12900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b75e552b8b8fe9f9c9b6def799b654c39eb7808b723c9779cc37005ee50434ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (176, '2023-10-29 21:00:35', 'SALE/POS2023/10/0172', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '64981.8200', '0.0000', '', '0.0000', '0.0000', '1618.1800', 4, '4995.0000', '6613.1800', '0.0000', '0.0000', '71595.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 10, 1, '71595.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10d7737021c4a5cb1c738c9306f562f27830951346066ead91b98742d3f9bbab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (177, '2023-10-29 21:35:59', 'SALE/POS2023/10/0173', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '742.5000', '742.5000', '0.0000', '0.0000', '10642.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '10642.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b26f1acd47fb65416d3e47a032f379716b7aae5c1add5deaec3216b5c6006003', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (178, '2023-10-29 21:41:27', 'SALE/POS2023/10/0174', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '20900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1567.5000', '1567.5000', '0.0000', '0.0000', '22467.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '22467.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56df6cb1c48114da07bd57a6c549e385fc95401bb5436edbb3f80e45e6b0d466', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (179, '2023-10-29 21:45:34', 'SALE/POS2023/10/0175', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '22900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1717.5000', '1717.5000', '0.0000', '0.0000', '24617.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '24617.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99600a3a179ff8074cef9af139f42629b01c4ca355d93c8a872753623cdb9e30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (180, '2023-10-29 22:11:45', 'SALE/POS2023/10/0176', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '0.0000', '537.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '537.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60c00373112c21d62a6278a9ac24f2280967ec19ae8177fc97db33e0c8f8610a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (181, '2023-10-29 22:13:11', 'SALE/POS2023/10/0177', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '0.0000', '3225.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '3225.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9aba668755fef8a41d6a1e5e6d3072aa28a63528221a55515a747acaa1b11c84', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (183, '2023-10-30 12:44:52', 'SALE/POS2023/10/0178', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '549727.2800', '0.0000', '', '0.0000', '0.0000', '6472.7200', 4, '41715.0000', '48187.7200', '0.0000', '0.0000', '597915.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 29, 1, '597915.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20c6ecdf2831f9ef528d1f3b40d08e1e15ac5f5fea303d837d548007e7591600', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (184, '2023-10-30 13:59:21', 'SALE/POS2023/10/0179', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '59800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4485.0000', '4485.0000', '0.0000', '0.0000', '64285.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 8, 1, '64285.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a7e3ea5097426504055644632a87cf0ecd2b2b92d4b7ecdea40bbcac19d354fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (185, '2023-10-30 14:30:44', 'SALE/POS2023/10/0180', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '25800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1935.0000', '1935.0000', '0.0000', '0.0000', '27735.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '27735.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ca98de76c7a47e2d303adbeb134f1b2d565a256da094ed8a24a40a7bc820689', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (186, '2023-10-30 18:40:38', 'SALE/POS2023/10/0181', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2062.5000', '2062.5000', '0.0000', '0.0000', '29562.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '29562.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7fa0d6711ba6f4d42898450972433738cf495503914f04b058bce5acd2f41b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (187, '2023-10-30 19:23:47', 'SALE/POS2023/10/0182', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '375.0000', '375.0000', '0.0000', '0.0000', '5375.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '5375.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80f27e608feee45a081688aa94e464b13f557677ae8f2ed4be1e59f50639b2ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (188, '2023-10-30 19:32:00', 'SALE/POS2023/10/0183', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '31390.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2415.0000', '3224.0900', '0.0000', '0.0000', '34615.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '34615.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2ba9d235322b0b2e4878655d390824f25c08886cf7c0a582758825dfda579b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (189, '2023-10-30 19:44:36', 'SALE/POS2023/10/0184', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '187.5000', '187.5000', '0.0000', '0.0000', '2687.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '2687.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3457db4e013bf711023b91cca25ff1510de77ef13b69fbb04a39e60b90b829db', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (190, '2023-10-30 19:52:17', 'SALE/POS2023/10/0185', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '39200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2940.0000', '2940.0000', '0.0000', '0.0000', '42140.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 10, 1, '42140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9cfcbf8cf590b527e50fa38fae509e585559ddfdfac81286e72299294d62114', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (191, '2023-10-30 20:21:20', 'SALE/POS2023/10/0186', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '0.0000', '537.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '537.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0fc471d7887624581bb63268ea4384727aa17de0db4d3e9820ba006401a973e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (192, '2023-10-30 21:07:45', 'SALE/POS2023/10/0187', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '742.5000', '742.5000', '0.0000', '0.0000', '10642.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '10642.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07f0d34b759258f8cc5d5d32e168448d94f684310ea97a54d17ac1f2838c07a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (193, '2023-10-31 11:44:42', 'SALE/POS2023/10/0188', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1710.0000', '1710.0000', '0.0000', '0.0000', '24510.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '24510.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02783c3590dbea9077d596c96d724f0e02dfe32179f19a78b1de4e900036b8a8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (194, '2023-10-31 12:27:16', 'SALE/POS2023/10/0189', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '28500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2137.5000', '2137.5000', '0.0000', '0.0000', '30637.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '30637.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aeeabbcff5ad392444a50cfaf8b070030da097f53da9cfb94b2c8b942e9f0b69', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (195, '2023-10-31 15:17:10', 'SALE/POS2023/10/0190', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '37000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2775.0000', '2775.0000', '0.0000', '0.0000', '39775.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '39775.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '955a7a1852e4082e1dd8e7a7069edb80357da59ba8c8c7a6d5abf706d810d370', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (196, '2023-10-31 19:23:26', 'SALE/POS2023/10/0191', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '140700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '10552.5000', '10552.5000', '0.0000', '0.0000', '151252.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '151252.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9657bf49dbe9012fb6201caefbb9ef53d0fbb0785ee1ba5acfbc96740fa5d2e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (198, '2023-10-31 19:54:00', 'SALE/POS2023/10/0192', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '34700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2602.5000', '2602.5000', '0.0000', '0.0000', '37302.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '37302.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23bb7a54aa620f89e4171f2fa4c946ff50b0b779a5f119929282536911d77d55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (204, '2023-10-31 20:39:46', 'SALE/POS2023/10/0193', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '41363.6400', '0.0000', '', '0.0000', '0.0000', '3236.3600', 4, '3345.0000', '6581.3600', '0.0000', '0.0000', '47945.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '47945.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd79531e78ee4ba39f596700b39e2b670ca37cc63ac48b6d8916e623b2aa60682', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (214, '2023-11-01 12:24:46', 'SALE/POS2023/11/0194', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '42100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3157.5000', '3157.5000', '0.0000', '0.0000', '45257.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '45257.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd27b41e83e4f5aa569d6f2b67660dd2783ca655734ac13b594aa204696969a1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (215, '2023-11-01 12:39:15', 'SALE/POS2023/11/0195', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '48300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3622.5000', '3622.5000', '0.0000', '0.0000', '51922.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '51922.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65919ed688ee0e19f2d37f150a7e675e624a7f9993b5240de908dc66a17b489e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (216, '2023-11-01 13:34:44', 'SALE/POS2023/11/0196', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '780.0000', '780.0000', '0.0000', '0.0000', '11180.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '11180.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c5041489f6f27700952e67073f9a5a232fdacfdb0f3402b76676aec584df702', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (217, '2023-11-01 14:07:00', 'SALE/POS2023/11/0197', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '0.0000', '2150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3748f3c14a638f47c22cdcee3ecfb2a54b2e7e835fa1f66b9dfa4b71270d11cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (218, '2023-11-01 16:50:11', 'SALE/POS2023/11/0198', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1125.0000', '1125.0000', '0.0000', '0.0000', '16125.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '16125.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dda28499e61399f3e67a1e7c6e4ca8e138d624e5fd67bc90dba7c26d4d713660', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (219, '2023-11-01 17:35:01', 'SALE/POS2023/11/0199', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '54100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4057.5000', '4057.5000', '0.0000', '0.0000', '58157.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '58157.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06aa10f7e78e9ee4e65a5da69f971ed9ba2a6fd72bab7817c1b4d84f1e667159', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (220, '2023-11-01 18:23:40', 'SALE/POS2023/11/0200', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '34200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2565.0000', '2565.0000', '0.0000', '0.0000', '36765.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '36765.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4b176734872b64081caad6e38e2815c49e4b27f8c23e6c501976495743e23f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (224, '2023-11-01 19:27:17', 'SALE/POS2023/11/0201', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '41700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3127.5000', '3127.5000', '0.0000', '0.0000', '44827.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '44827.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c846bebee3cedbd12839d50066465dd5affb4482306d82bd8361fbf65a1b8bcd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (225, '2023-11-01 19:27:49', 'SALE/POS2023/11/0202', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '0.0000', '537.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '537.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6e63eed6a201c39d73e70418932fe1ee396a6b06b44e1e2113075a0c083cdcbc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (226, '2023-11-01 19:28:10', 'SALE/POS2023/11/0203', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '262.5000', '262.5000', '0.0000', '0.0000', '3762.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '3762.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57633ed9e815f5aa6d7ca8166ed6bcd6d8a29479a38a1e13eee93aff681dcde3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (227, '2023-11-01 19:34:26', 'SALE/POS2023/11/0204', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '112.5000', '112.5000', '0.0000', '0.0000', '1612.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1612.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a4a9dc0b7f0acfe4212e2abe5415fbe2a07d7ffd71e1732f13c80c6a7b69ee5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (229, '2023-11-01 19:41:16', 'SALE/POS2023/11/0206', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '22000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1650.0000', '1650.0000', '0.0000', '0.0000', '23650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '23650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bbd40a51d80fd44aa9e1d0e610234d4487e2e275b8e4df8faef997cae5136ba8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (233, '2023-11-01 20:29:56', 'SALE2023/11/0025', 22, 'kunakorn thai restaurant', 3, 'kunakornthairestaurant', 1, '', '', '2500.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '187.5000', '187.5000', '0.0000', '0.0000', '2687.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 0, '2687.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '9c1c7c4678875ae9f24b042c3e0142c3b61178163a7412d961abbda7376b4b8b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (237, '2023-11-01 21:04:54', 'SALE/POS2023/11/0207', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '337.5000', '337.5000', '0.0000', '0.0000', '4837.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '4837.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b7b1ab78cafb5972a8cf375001773f3926a3d422aabed3e5e1515b5d1b2c885', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (238, '2023-11-01 21:17:32', 'SALE/POS2023/11/0208', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '65000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4875.0000', '4875.0000', '0.0000', '0.0000', '69875.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '69875.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8feea0b251b23939ec7f990e7e1e9e266c4f872729cc2725483760dd72314c53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (239, '2023-11-01 22:14:26', 'SALE/POS2023/11/0209', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '667.5000', '667.5000', '0.0000', '0.0000', '9567.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '9567.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5bd0dd4d5d6dc02bfdbefe80d3e4c75465312390268b9eba8e2a4563f0e672ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (240, '2023-11-02 11:19:12', 'SALE/POS2023/11/0210', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '48500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3637.5000', '3637.5000', '0.0000', '0.0000', '52137.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '52137.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54b1b945ac0376f4c93cd1e481ca2b145748ec2cc1ef8ef263ca77b5d4154f5c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (241, '2023-11-02 12:59:26', 'SALE/POS2023/11/0211', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '26890.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2077.5000', '2886.5900', '0.0000', '0.0000', '29777.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '29777.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99ebd635fa2684a3b491ebe1072a6a1a99a0bdd1b092f7b48c523b0319494f68', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (242, '2023-11-02 14:35:06', 'SALE/POS2023/11/0212', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '42700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3202.5000', '3202.5000', '0.0000', '0.0000', '45902.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 7, 1, '45902.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c196f4da82b7e437b735fe934817137d4b868265d923ee09b0a3c040832f38e9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (243, '2023-11-02 15:27:13', 'SALE/POS2023/11/0213', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '19300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1447.5000', '1447.5000', '0.0000', '0.0000', '20747.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '20747.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d5a740b069d55e87983ec743a4a7190fe48e52d1addcc0322d587a790fb22d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (244, '2023-11-02 16:51:24', 'SALE/POS2023/11/0214', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '36390.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2790.0000', '3599.0900', '0.0000', '0.0000', '39990.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 8, 1, '39990.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6bbbe8acbec5cc8fdde80ca17f7cfccfc6d9e68225e44f3d739f4effdaf57aa9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (245, '2023-11-02 17:47:02', 'SALE/POS2023/11/0215', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1410.0000', '1410.0000', '0.0000', '0.0000', '20210.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '20210.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0af526d962eaba0866704e5b8d645fe88b78078187a3346fe4393897152a126d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (246, '2023-11-02 17:48:46', 'SALE/POS2023/11/0216', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '28000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2100.0000', '2100.0000', '0.0000', '0.0000', '30100.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '30100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '734049798d0c47d19e8f1e2fa2809f101cc6784d95b01c7fc5af150b6903512d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (247, '2023-11-02 18:36:58', 'SALE/POS2023/11/0217', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '37200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2790.0000', '2790.0000', '0.0000', '0.0000', '39990.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 8, 1, '39990.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a85e81e3866f00c3867214d217aa5c411dae9d7b37ed0cf4f2ed4081da84bad8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (248, '2023-11-02 19:25:14', 'SALE/POS2023/11/0218', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '262.5000', '262.5000', '0.0000', '0.0000', '3762.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '3762.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb9393b4f2a70745dde6bf64d84c13fe59c40ef64a5b763f76b4876be1192208', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (249, '2023-11-02 20:07:22', 'SALE/POS2023/11/0219', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '337.5000', '337.5000', '0.0000', '0.0000', '4837.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '4837.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3bcba2f053befb48e70d6ed27467a5ad06ce253962544cea002983bf20af353', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (250, '2023-11-02 20:18:41', 'SALE/POS2023/11/0220', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '39700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2977.5000', '2977.5000', '0.0000', '0.0000', '42677.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 8, 1, '42677.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9eb27a705f950d458dbf13212a24408fa7826117f216c187757ab1008299267', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (251, '2023-11-02 20:42:26', 'SALE/POS2023/11/0221', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '51700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3877.5000', '3877.5000', '0.0000', '0.0000', '55577.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '55577.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '096d7d31dc32341d7496dc106f8c2f1ff42a869c0eb0b8165f1dfd5288f3d468', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (252, '2023-11-02 20:46:50', 'SALE/POS2023/11/0222', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '34900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2617.5000', '2617.5000', '0.0000', '0.0000', '37517.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '37517.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '707dc93faf28aea81d0c3871987186ecfb31f4b8bc3457356e4b1dc9f0a40e3f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (253, '2023-11-02 21:28:28', 'SALE/POS2023/11/0223', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '64000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4800.0000', '4800.0000', '0.0000', '0.0000', '68800.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 12, 1, '68800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '020defeaf4e3dce3d25dd2cacb112cffe96c04eb21a737e46d7795cb3ec9d5db', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (255, '2023-11-02 21:42:20', 'SALE/POS2023/11/0225', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '187.5000', '187.5000', '0.0000', '0.0000', '2687.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '2687.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f8773f9d4df63749bafbedd2b7fbb6509b66820ffec2ffe8fb4009ec89fe9068', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (256, '2023-11-02 22:04:06', 'SALE/POS2023/11/0226', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '337.5000', '337.5000', '0.0000', '0.0000', '4837.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '4837.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ff41fe573c775faebe6ba867a7c0f9b61f4c7e9c1b556664e93f80ff66a9ebf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (257, '2023-11-02 22:35:00', 'SALE/POS2023/11/0227', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2227.5000', '2227.5000', '0.0000', '0.0000', '31927.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 7, 1, '31927.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7126b948e33cbff87977bb08bad290893b77ce0bbc8dcfe8b2569165cba60a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (258, '2023-11-03 12:48:54', 'SALE2023/11/0029', 5, 'kunakorn thai restaurant', 3, 'kunakornthairestaurant', 1, '', '', '31700.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '2377.5000', '2377.5000', '0.0000', '0.0000', '34077.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 6, 0, '34077.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '4b6c0975d45ffe24ad71842d71724a9b26c1cca421e6b8af4772486107d20a09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (259, '2023-11-03 13:02:32', 'SALE2023/11/0030', 4, 'kunakorn thai restaurant', 3, 'kunakornthairestaurant', 1, '', '', '31600.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '2370.0000', '2370.0000', '0.0000', '0.0000', '33970.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 8, 0, '33970.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '68fd22b411257c9d5f786c834bc16c85084377e226f240295c46339f4cc30961', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (260, '2023-11-03 13:26:00', 'SALE2023/11/0031', 4, 'kunakorn thai restaurant', 3, 'kunakornthairestaurant', 1, '', '', '26800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2010.0000', '2010.0000', '0.0000', '0.0000', '28810.0000', 'completed', 'paid', 0, NULL, 11, 2, '2023-11-03 13:28:52', 4, 0, '28810.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2689adace480e27385f768701daefd66b1765cec1f3bf32dbc105d9ac27b9d55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (261, '2023-11-03 13:45:49', 'SALE2023/11/0032', 7, 'kunakorn thai restaurant', 3, 'kunakornthairestaurant', 1, '', '', '43800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3285.0000', '3285.0000', '0.0000', '0.0000', '47085.0000', 'completed', 'paid', 0, NULL, 9, NULL, NULL, 6, 0, '47085.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '03f8cd1cff5eaefa21fd2e5670fde07b722f54a119e05132a66a64e8870d987d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (262, '2023-11-03 14:32:00', 'SALE2023/11/0033', 18, 'kunakorn thai restaurant', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '0.0000', '4300.0000', 'completed', 'paid', 0, NULL, 11, 2, '2023-11-03 14:54:21', 1, 0, '4300.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '554d594416fa4dff47ff5f7cbeaa670fb2f25690ba8c80f90c4c78d1c7cfae24', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (263, '2023-11-03 14:42:00', 'SALE2023/11/0034', 22, 'kunakorn thai restaurant', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '0.0000', '2150.0000', 'completed', 'paid', 0, NULL, 8, 2, '2023-11-03 14:55:30', 2, 0, '2150.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '45fcde2883ac14e1e8f243a1538862bc0d36862c8fa0bcc38449a9b1dc4e9293', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (266, '2023-11-03 16:56:38', 'SALE/POS2023/11/0228', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1372.5000', '1372.5000', '0.0000', '0.0000', '19672.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '19672.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dca0c1ac1832b9608ad24cf2ff142944e69d6fd88da2c71d70e406b11c9008a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (267, '2023-11-03 18:36:53', 'SALE/POS2023/11/0229', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '675.0000', '675.0000', '0.0000', '0.0000', '9675.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '9675.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ad09e9461f1381b3ee78a8c6a01ab2aa6ef2ebc4e460d04d2345a244b67f021', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (268, '2023-11-03 19:03:30', 'SALE/POS2023/11/0230', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '76300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '5722.5000', '5722.5000', '0.0000', '0.0000', '82022.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '82022.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb93093404fc7c27e803e2a3f24ebd0c68cc5fc808683cc2cb4700a3b7517403', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (269, '2023-11-03 19:05:01', 'SALE/POS2023/11/0231', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '675.0000', '675.0000', '0.0000', '0.0000', '9675.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '9675.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a9d36f9a6bfa87772449c84f7aad8a6bb9f2d574aa79ef97c714bbf48a4c02d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (270, '2023-11-03 19:35:08', 'SALE/POS2023/11/0232', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '56700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4252.5000', '4252.5000', '0.0000', '0.0000', '60952.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '60952.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d44afe713efc9ddfbe3008d5026e8a1c0d9b9b049464bd40422a2754b4d2307', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (271, '2023-11-03 19:44:53', 'SALE/POS2023/11/0233', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '43200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3240.0000', '3240.0000', '0.0000', '0.0000', '46440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '46440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55b8512fd41cd2d730973565364c960367d576ab4554efa597b17196c71c26a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (272, '2023-11-03 19:49:18', 'SALE/POS2023/11/0234', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '34700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2602.5000', '2602.5000', '0.0000', '0.0000', '37302.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '37302.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a0ad9b9e572189f8589c3e6544bf50f0d2b058e8f746efaaac76f624ccda5da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (273, '2023-11-03 20:55:36', 'SALE/POS2023/11/0235', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2047.5000', '2047.5000', '0.0000', '0.0000', '29347.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '29347.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '691046ed5651f95111acf90d1678ac2b646a1a1cc927a4508d38ff41ea42f4ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (274, '2023-11-03 21:34:53', 'SALE/POS2023/11/0236', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '337.5000', '337.5000', '0.0000', '0.0000', '4837.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '4837.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e5b9f968c46358393373cea6ee934fc56482ad06043dacaf313736ded023db8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (275, '2023-11-03 23:08:16', 'SALE/POS2023/11/0237', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '51100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3832.5000', '3832.5000', '0.0000', '0.0000', '54932.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '54932.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b2d2fcf0369076d1a736aae6b4d9fbb9edf13eaf7fb0f61c70f4ce49862447e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (276, '2023-11-03 23:50:38', 'SALE/POS2023/11/0238', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '47800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3585.0000', '3585.0000', '0.0000', '0.0000', '51385.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '51385.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ade79c32b41f24f4ee9ef3807ec0d63d551da8b1e14d6e1b4b16eeec2a54d410', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (277, '2023-11-04 12:02:31', 'SALE/POS2023/11/0239', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '65200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4890.0000', '4890.0000', '0.0000', '7009.0000', '77099.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 16, 1, '77099.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b12160061b2c2e3b7e42e00c9909c69daa6e1d7ffbfab7d41f74f281b27142c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (278, '2023-11-04 12:27:27', 'SALE/POS2023/11/0240', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '14000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1050.0000', '1050.0000', '0.0000', '1505.0000', '16555.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '16555.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5faa868b80d6c705f6536242db50c27517bd737392bca6c34d2bfce36e2e4926', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (279, '2023-11-04 13:05:02', 'SALE/POS2023/11/0241', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1380.0000', '1380.0000', '0.0000', '1978.0000', '21758.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '21758.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1732dd30a31a2f8312c5cdc80dbb1cb880300cf29105a158ac7f53ae8c3205ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (280, '2023-11-04 13:36:36', 'SALE/POS2023/11/0242', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '62200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4665.0000', '4665.0000', '0.0000', '6686.5000', '73551.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 27, 1, '73551.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06559f7ef518ee33afedcbee75242f988a04a601bd3b11a54dfcf1176d12eba5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (281, '2023-11-04 14:32:33', 'SALE/POS2023/11/0243', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '32600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2445.0000', '2445.0000', '0.0000', '3504.5000', '38549.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '38549.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9089c3cd08c968b5c6e62c2d7307040c2f030571c2e03ead2090c8d5e1c0b792', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (282, '2023-11-04 15:14:46', 'SALE/POS2023/11/0244', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '44100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3307.5000', '3307.5000', '0.0000', '4740.7500', '52148.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '52148.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '906d2399dad7507b4704329eb996a5b264f5f41a94cfc3005eb58ba9081225a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (283, '2023-11-04 16:17:26', 'SALE/POS2023/11/0245', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '262.5000', '262.5000', '0.0000', '376.2500', '4138.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '4138.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24238fc1ed7a29944d680b818a9e2448a78b0d96e5307c94f94bfe5b18a0948c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (284, '2023-11-04 16:58:59', 'SALE/POS2023/11/0246', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '32300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2422.5000', '2422.5000', '0.0000', '3472.2500', '38194.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '38194.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '347c65ee01ac7f8c38a0a22b0019bfc5865a1d7b9ef82c2feee965855a1cabb9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (285, '2023-11-04 17:13:08', 'SALE/POS2023/11/0247', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '58400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4380.0000', '4380.0000', '0.0000', '6278.0000', '69058.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '69058.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb124b131b9f55fc753baa3f7d1a27d9b12e5c6d82b140c5d228a9b9abc05250', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (286, '2023-11-04 17:17:04', 'SALE/POS2023/11/0248', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1275.0000', '1275.0000', '0.0000', '1827.5000', '20102.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '20102.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f35756dcf8d69b599d9e3388a6bdf421ee82e6ec68e64329e69c215cbfe296d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (287, '2023-11-04 17:20:56', 'SALE/POS2023/11/0249', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '53.7500', '591.2500', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 1, 1, '591.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '713bc3f53751dbc33c96aeda2566d5486416a8d72fa1d9c53dd54398cb1a028b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (288, '2023-11-04 17:22:34', 'SALE/POS2023/11/0250', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '30600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2295.0000', '2295.0000', '0.0000', '3289.5000', '36184.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '36184.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4495a32b34741370a139959ad5bba3dad254f3fa90037df869693d3e91a92d35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (291, '2023-11-04 17:56:39', 'SALE/POS2023/11/0251', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '116.2500', '116.2500', '0.0000', '166.6300', '1832.8800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1832.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5f3eb5e0718497ac34e9f38977f8e69f096e4eceec6f7c8ef2675a9cda92b4b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (294, '2023-11-04 18:48:56', 'SALE/POS2023/11/0252', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1155.0000', '1155.0000', '0.0000', '1655.5000', '18210.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '18210.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a3fce3525b0daf31fffdb83d62ee0336274832c7a843a08f8f21f6f75f20c5a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (295, '2023-11-04 18:51:09', 'SALE/POS2023/11/0253', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '46000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3450.0000', '3450.0000', '0.0000', '4945.0000', '54395.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '54395.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd321ef385a5632ae8e0cb4e1ed20ac8449ab0d2b59f90329febc829de00403d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (296, '2023-11-04 18:52:08', 'SALE/POS2023/11/0254', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '20800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1560.0000', '1560.0000', '0.0000', '2236.0000', '24596.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '24596.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82542934a40b886d916208e5aacc809043990a129bd4539423ae6cee50af286e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (297, '2023-11-04 19:28:56', 'SALE/POS2023/11/0255', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1800.0000', '1800.0000', '0.0000', '2580.0000', '28380.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '28380.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16de1cf69a005d9b5c7b9a07d94c6898513d35b3bfe45c710e263fb675961476', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (298, '2023-11-04 19:46:28', 'SALE/POS2023/11/0256', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1822.5000', '1822.5000', '0.0000', '2612.2500', '28734.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '28734.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d27ae0fa0ec21861f5e9534228569a8c106e96a2082094a48832d5dea47a50f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (299, '2023-11-04 21:27:02', 'SALE/POS2023/11/0257', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '967.5000', '967.5000', '0.0000', '1386.7500', '15254.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '15254.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '90f0604beab78b63b181ebf7bb1a6afda8994528702f983808f19175431e7671', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (300, '2023-11-04 21:31:30', 'SALE/POS2023/11/0258', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '20900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1567.5000', '1567.5000', '0.0000', '2246.7500', '24714.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '24714.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1616befeab86592810051771ae20b318ece71e3b8f8fa0dd0b9ed4f75f84c15', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (302, '2023-11-04 22:07:11', 'SALE/POS2023/11/0260', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '34000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2550.0000', '2550.0000', '0.0000', '3655.0000', '40205.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '40205.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd55401bee08ecf5fed89700767c3850b6227e23bb9f069239a6ca293acdc7941', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (303, '2023-11-04 23:02:02', 'SALE/POS2023/11/0261', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '750.0000', '750.0000', '0.0000', '1075.0000', '11825.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '11825.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a2607c4e641659534f6cb6cdc8367fb8c4f8d07b892883642a5e6b527e33aa8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (309, '2023-11-05 12:57:28', 'SALE2023/11/0046', 24, 'Table 3', 3, 'kunakornthairestaurant', 1, '', '', '23990.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '1860.0000', '2669.0900', '0.0000', '0.0000', '26660.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 5, 0, '26660.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '88a67b6c674bece8c2470aa5a248acbee3a5fcdceb3df29521730a20ceeaa870', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (311, '2023-11-05 13:11:00', 'SALE2023/11/0048', 4, 'Table 1', 3, 'kunakornthairestaurant', 1, '', '', '58000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4350.0000', '4350.0000', '0.0000', '0.0000', '62350.0000', 'completed', 'paid', 0, NULL, 11, 3, '2023-11-05 13:59:01', 11, 0, '62350.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6c157e656710f10ba4b596d74a7490eef84aa67270dbfb16c869ddfd1acf092d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (313, '2023-11-05 14:02:00', 'SALE2023/11/0050', 5, 'Table 2', 3, 'kunakornthairestaurant', 1, '', '', '47200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3540.0000', '3540.0000', '0.0000', '0.0000', '50740.0000', 'completed', 'paid', 0, NULL, 11, 3, '2023-11-05 15:06:42', 9, 0, '50740.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fa72afaf2003b3ae5d9a2c8c9d9800f969a2a1969010e721e07d05414ce962b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (314, '2023-11-05 14:51:24', 'SALE2023/11/0051', 39, 'VIP 2', 3, 'kunakornthairestaurant', 1, '', '', '25800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1935.0000', '1935.0000', '0.0000', '0.0000', '27735.0000', 'completed', 'paid', 0, NULL, 9, 9, '2023-11-05 16:56:36', 6, 0, '27735.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ad200d78bc396ad0aed8711e844fda5632db7041e034d8515e43dfda12f03c7c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (315, '2023-11-05 15:12:00', 'SALE2023/11/0052', 7, 'Table 4', 3, 'kunakornthairestaurant', 1, '', '', '25300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1897.5000', '1897.5000', '0.0000', '0.0000', '27197.5000', 'completed', 'paid', 0, NULL, 11, 3, '2023-11-05 15:37:54', 5, 0, '27197.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'ecaa6fc0d28232370d1104566e9a0b15e440608144c89d564825394a091fa0da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (316, '2023-11-05 15:19:54', 'SALE2023/11/0053', 4, 'Table 1', 3, 'kunakornthairestaurant', 1, '', '', '57300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4297.5000', '4297.5000', '0.0000', '0.0000', '61597.5000', 'completed', 'paid', 0, NULL, 8, 8, '2023-11-05 18:28:37', 8, 0, '61597.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd4a3b4d81b72237ac09a88c6066200b66fecc695994db5d83fada66d86becfa9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (317, '2023-11-05 15:22:00', 'SALE2023/11/0054', 7, 'Table 4', 3, 'kunakornthairestaurant', 1, '', '', '23300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1747.5000', '1747.5000', '0.0000', '0.0000', '25047.5000', 'completed', 'paid', 0, NULL, 9, 3, '2023-11-05 16:13:59', 5, 0, '25047.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a21b635ef3afda12ae692c0920f4bcf796d128253857d2744b0f3117ecec8505', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (318, '2023-11-05 15:30:57', 'SALE/POS2023/11/0262', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '675.0000', '675.0000', '0.0000', '967.5000', '10642.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '10642.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09f1fd5873f23892ad06b7f865c074c3440a75f34aa6a7fcac9fce01d89a0e64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (319, '2023-11-05 15:42:00', 'SALE2023/11/0055', 5, 'Table 2', 3, 'kunakornthairestaurant', 1, '', '', '10500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '787.5000', '787.5000', '0.0000', '0.0000', '11287.5000', 'completed', 'paid', 0, NULL, 8, 3, '2023-11-05 16:09:59', 1, 0, '11287.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '70bd13082e00afaf6ec8cf0356947545be2eda9c10b55d7a2a0a7fe11e2c0f1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (320, '2023-11-05 15:51:00', 'SALE2023/11/0056', 24, 'Table 3', 3, 'kunakornthairestaurant', 1, '', '', '59290.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '4507.5000', '5316.5900', '0.0000', '0.0000', '64607.5000', 'completed', 'paid', 0, NULL, 11, 3, '2023-11-05 17:44:30', 15, 0, '64607.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'fe7f6a6a250b7d8462d9ade38be142b0bb9ce44db72892bbce49a1d14fecfafa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (322, '2023-11-05 16:12:29', 'SALE/POS2023/11/0263', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '322.5000', '3547.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '3547.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e37257ac5b00d469d2a48d028e2640eea3d1ef6f3fae40f9c19ae0887218a9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (324, '2023-11-05 17:54:00', 'SALE2023/11/0059', 27, 'Table 7', 3, 'kunakornthairestaurant', 1, '', '', '57800.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '4335.0000', '4335.0000', '0.0000', '0.0000', '62135.0000', 'completed', 'paid', 0, NULL, 11, 11, '2023-11-05 20:14:17', 12, 0, '62135.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0f3101b74b71a4f09de3c2aeafe66f437209a619cadbe76f36ba2536e4cf393a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (325, '2023-11-05 19:22:37', 'SALE/POS2023/11/0264', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '930.0000', '930.0000', '0.0000', '1333.0000', '14663.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '14663.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d2acca2ed7768d06ea5242bf1bf77dfa4903f8435f9135e213c3b43c1088ca6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (326, '2023-11-05 19:25:03', 'SALE2023/11/0060', 28, 'Table 8', 3, 'kunakornthairestaurant', 1, '', '', '41600.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '3120.0000', '3120.0000', '0.0000', '0.0000', '44720.0000', 'completed', 'paid', 0, NULL, 11, 11, '2023-11-05 20:30:58', 5, 0, '44720.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'aa6277cba433e64da06d83041c7e46eef3422b2f2108f1a975d649f1f3dba789', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (327, '2023-11-05 19:27:24', 'SALE2023/11/0061', 31, 'Table 11', 3, 'kunakornthairestaurant', 1, '', '', '37890.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2902.5000', '3711.5900', '0.0000', '0.0000', '41602.5000', 'completed', 'paid', 0, NULL, 9, 9, '2023-11-05 19:42:59', 6, 0, '41602.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '444e35c1425bc984ad406f8e48bf1c7872f3ae73cb5abfa113f4bf968db26d69', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (328, '2023-11-05 19:49:14', 'SALE2023/11/0062', 29, 'Table 9', 3, 'kunakornthairestaurant', 1, '', '', '4500.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '337.5000', '337.5000', '0.0000', '0.0000', '4837.5000', 'completed', 'paid', 0, NULL, 11, 11, '2023-11-05 19:49:57', 2, 0, '4837.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '130590181390492f1911ecce6327b5e782d384a315f40b9b619231334d3275a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (329, '2023-11-05 20:29:09', 'SALE/POS2023/11/0265', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '967.5000', '967.5000', '0.0000', '1386.7500', '15254.2500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '15254.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07a39cf6d93e36849a0083c3e6df20d8e4dcfcdfd6c4b6345ca892e813dfdb51', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (330, '2023-11-05 20:30:58', 'SALE/POS2023/11/0266', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '50600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3795.0000', '3795.0000', '0.0000', '5439.5000', '59834.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 12, 1, '59834.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5ec2688fc393f08239f4cad7ccc8034faa25c8ec6aeaa679c061ea81afd564f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (331, '2023-11-06 13:33:56', 'SALE2023/11/0063', 7, 'Table 4', 3, 'kunakornthairestaurant', 1, '', '', '36200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2715.0000', '2715.0000', '0.0000', '0.0000', '38915.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 6, 0, '38915.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd4bb76d4596f9b8f93c131c8c6550aa1b2c4ae667f1970bf7cd59bb6d3de8087', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (332, '2023-11-06 14:35:00', 'SALE2023/11/0064', 38, 'VIP 1', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '0.0000', '3225.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 0, '3225.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '87a486c17de4fa173d0eabd46e5077b2bb9c277b4f67c8cea2dcbc258bf0069e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (335, '2023-11-06 14:59:04', 'SALE2023/11/0065', 24, 'Table 3', 3, 'kunakornthairestaurant', 1, '', '', '6300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '472.5000', '472.5000', '0.0000', '0.0000', '6772.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 0, '6772.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd335d571114dae472f9a0c9216b9fa81f1fe1077935794f3ec916b1e5480a630', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (338, '2023-11-06 16:28:39', 'SALE/POS2023/11/0269', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '430.0000', '4730.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '4730.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b379de0ff96ca350bcb565d8d3a3b094c348a89f2755b0360a169bbf890a0ef0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (339, '2023-11-06 17:43:00', 'SALE/POS2023/11/0270', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '105700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '7927.5000', '7927.5000', '0.0000', '11362.7500', '124990.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 23, 1, '124990.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a1aa47980b62fb02824704cf5050b2395d38b92ac6eee60e013e5fdeb365e73', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (341, '2023-11-06 20:00:23', 'SALE/POS2023/11/0271', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '25200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1890.0000', '1890.0000', '0.0000', '2709.0000', '29799.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '29799.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e501537d134ede9f981b9d2e436eeb50c412ebc8cb995cd661dce74052cc3662', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (344, '2023-11-07 14:02:11', 'SALE/POS2023/11/0272', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '41490.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '3172.5000', '3981.5900', '0.0000', '4547.2500', '50019.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '50019.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '781090974d56575bc66320522252adbe557b39eeaf8ce90c6e277aa9bd887d19', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (345, '2023-11-07 14:16:12', 'SALE/POS2023/11/0273', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '83600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '6270.0000', '6270.0000', '0.0000', '8987.0000', '98857.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '98857.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a09891ce66acff8a2d454f084577c9143778e4e09642f649f9776d920ffbd4bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (346, '2023-11-07 15:04:15', 'SALE/POS2023/11/0274', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '44500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3337.5000', '3337.5000', '0.0000', '4783.7500', '52621.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '52621.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '340b827c4b030bf981c473627de4e834aea07a3e0385b0ac1071d6ff119ec824', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (348, '2023-11-07 15:39:25', 'SALE/POS2023/11/0275', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '630.0000', '630.0000', '0.0000', '903.0000', '9933.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '9933.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '91a0a7f251dc01f69c6754356752763eecb4ad7f1f9d556947b0e81ffc563914', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (351, '2023-11-07 17:09:02', 'SALE/POS2023/11/0276', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2085.0000', '2085.0000', '0.0000', '2988.5000', '32873.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '32873.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '568a0000c726514c385832948baead455fc3504ea58f06a6df2f20f8a20fcea2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (352, '2023-11-07 17:11:01', 'SALE/POS2023/11/0277', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15590.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '1230.0000', '2039.0900', '0.0000', '1763.0000', '19393.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '19393.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09bcac065bddddf2b04a1c98c91dd3410ae1905f137b04fc2b0ebe30e3eeeb16', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (353, '2023-11-07 17:46:53', 'SALE/POS2023/11/0278', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '35390.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2715.0000', '3524.0900', '0.0000', '3891.5000', '42806.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '42806.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1f5ca75224e9cb4df7fde8ded29d9ef771332199f25e631dd929ccc803c3651', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (355, '2023-11-07 18:10:24', 'SALE/POS2023/11/0279', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '7000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '525.0000', '525.0000', '0.0000', '752.5000', '8277.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '8277.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70fbb2293647a1514e76d5b85008657a1cccb53af7a8796383288c7013d36fb4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (358, '2023-11-07 19:21:11', 'SALE/POS2023/11/0280', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '25800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1935.0000', '1935.0000', '0.0000', '2773.5000', '30508.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '30508.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87c8a300ae5f4a571077e72392450c60808c87743dee58faa2fed9d29a8beb79', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (360, '2023-11-07 19:25:52', 'SALE/POS2023/11/0281', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '26490.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2047.5000', '2856.5900', '0.0000', '2934.7500', '32282.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '32282.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31538788b8f88c66d559901e9b22f620f183b2f1059705527d88c41acba4a6c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (362, '2023-11-07 20:25:05', 'SALE/POS2023/11/0282', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '11900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '892.5000', '892.5000', '0.0000', '1279.2500', '14071.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '14071.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13a64d17aed0eeab6699595a60cc8638246c3332ba79b1e9de89bf22c38be807', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (363, '2023-11-07 21:13:21', 'SALE/POS2023/11/0283', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '67400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '5055.0000', '5055.0000', '0.0000', '7245.5000', '79700.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 16, 1, '79700.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7826d6f8513449d390058057e70dfbe872613cc90f6ac5ca0f96404759d0d5d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (364, '2023-11-07 21:21:00', 'SALE/POS2023/11/0284', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '87100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '6532.5000', '6532.5000', '0.0000', '9363.2500', '93632.5000', 'completed', 'paid', 0, NULL, 2, 2, '2023-11-07 21:27:04', 14, 1, '102995.7500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3704e74093f6da97d590aaed243187a7edb29ba3b3e00be5dd780403b528fece', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (365, '2023-11-08 13:27:10', 'SALE/POS2023/11/0285', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '57200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4290.0000', '4290.0000', '0.0000', '6149.0000', '67639.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '67639.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd0cb2fb1913006ccfd8a83dfa93299181e64a5ba9c6730bfb21bb8ca26d0545', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (366, '2023-11-08 13:46:39', 'SALE/POS2023/11/0286', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '450.0000', '450.0000', '0.0000', '645.0000', '7095.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '7095.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7919f9110fb8b1b4d7d6a0ebf0269b2ea3e6092dfb9a8adcf4551970e3a564b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (367, '2023-11-08 13:48:46', 'SALE/POS2023/11/0287', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '47100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3532.5000', '3532.5000', '0.0000', '5063.2500', '55695.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '55695.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07f0219e467ff7349f5e35500d492c2d3ae1d698c8c7840f1c7ee2946698a4b6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (368, '2023-11-08 16:38:26', 'SALE/POS2023/11/0288', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '25300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1897.5000', '1897.5000', '0.0000', '2719.7500', '29917.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '29917.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff3bb7e28818089a6f6818043e2ad879cb1e3147460393fda07df511dae11786', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (369, '2023-11-08 18:53:59', 'SALE/POS2023/11/0289', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '780.0000', '780.0000', '0.0000', '1118.0000', '12298.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '12298.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76552018a15e571f0996321221bde405f31d990294c9626f642fc663a6fe4886', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (371, '2023-11-08 20:03:21', 'SALE/POS2023/11/0290', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1410.0000', '1410.0000', '0.0000', '2021.0000', '22231.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '22231.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f20fe5010ea92ed660bfbd30b9724e70e965a3a3897444d458550dfb5b24dccc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (374, '2023-11-09 14:54:56', 'SALE/POS2023/11/0291', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '246000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '18450.0000', '18450.0000', '0.0000', '26445.0000', '290895.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 54, 1, '290895.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d5a87a5c30728e9743ba704774377ebcffba12ca59690a186cd8f0fc56720a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (376, '2023-11-09 15:21:32', 'SALE/POS2023/11/0292', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '59100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4432.5000', '4432.5000', '0.0000', '6353.2500', '69885.7500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 14, 1, '69885.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '073d51d608b2458a45f9f51dc236cb23cf5fddc5b0b29ef38e5ae0aca32e1d1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (380, '2023-11-09 16:57:17', 'SALE/POS2023/11/0293', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '855.0000', '855.0000', '0.0000', '1225.5000', '13480.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '13480.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd10db7c08c9d7e5dcf3f8ef2f0b7f83c8c1242eee45870bf7e63f3d743f69eb9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (381, '2023-11-09 16:59:49', 'SALE/POS2023/11/0294', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '49200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3690.0000', '3690.0000', '0.0000', '5289.0000', '58179.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 11, 1, '58179.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c001a9a1f4926b4e657fc26069228c0e58f2ff0dda89ec80b302d62299e4c8cb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (382, '2023-11-09 17:01:57', 'SALE/POS2023/11/0295', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '337.5000', '337.5000', '0.0000', '483.7500', '5321.2500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '5321.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23a742e83890adc766b74c2b59077ab4784753bec5916bdbaba319817a9ca87c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (383, '2023-11-09 17:17:23', 'SALE/POS2023/11/0296', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '35581.8200', '0.0000', '', '0.0000', '0.0000', '1618.1800', 4, '2790.0000', '4408.1800', '0.0000', '3999.0000', '43989.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '43989.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29f6552c6ee5baf2aa0aece41685b2b8283a9577541ca9ebe9752a0b1d67c81a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (384, '2023-11-09 17:33:47', 'SALE/POS2023/11/0297', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2197.5000', '2197.5000', '0.0000', '3149.7500', '34647.2500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 11, 1, '34647.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d83301dc178b5c57a9b68c30042b30d197355a993ef4127579b70e0303456d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (387, '2023-11-09 18:35:24', 'SALE/POS2023/11/0299', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '675.0000', '675.0000', '0.0000', '967.5000', '10642.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '10642.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42c77cb3f9c8de9de1129ef9e551c6c53aaf8c6d97f1dcde6b1f2f0a5dc3c1c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (388, '2023-11-09 19:54:10', 'SALE/POS2023/11/0300', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '85000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '6375.0000', '6375.0000', '0.0000', '9137.5000', '100512.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '100512.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7dc318b465e7690b14fb23e1051b736dde6a73dbf203277130e35507208d9b59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (390, '2023-11-09 22:03:41', 'SALE/POS2023/11/0301', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '80300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '6022.5000', '6022.5000', '0.0000', '8632.2500', '94954.7500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 19, 1, '94954.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cdafe318517c0413d7fd2c5087bfa27cb3a992df7c9cb773e0a0b2c270263b63', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (392, '2023-11-09 23:11:21', 'SALE/POS2023/11/0302', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2190.0000', '2190.0000', '0.0000', '3139.0000', '34529.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '34529.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1bfedaf963b9d0b26220ffc5c860bc4a6e63f8e1fb029f6f87d4703cf39acd2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (394, '2023-11-10 14:51:23', 'SALE/POS2023/11/0303', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '930.0000', '930.0000', '0.0000', '1333.0000', '14663.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '14663.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8760e060a8836f08a1e369818ba01c2f899c91778df0ca4dce783e8c3c0c1b7a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (398, '2023-11-10 16:42:26', 'SALE/POS2023/11/0304', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '19900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1492.5000', '1492.5000', '0.0000', '2139.2500', '23531.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '23531.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd955bc5e46c722fb261947fc78952acdb7bfb10a7bdfe19f96cd146ba878e54c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (399, '2023-11-10 16:46:43', 'SALE/POS2023/11/0305', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '742.5000', '742.5000', '0.0000', '1064.2500', '11706.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '11706.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6fc1b5958e7ed87383414c4d69ae8bd9c0625d08cf147763344c16712de6b198', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (403, '2023-11-10 17:15:03', 'SALE/POS2023/11/0307', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '78800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '5910.0000', '5910.0000', '0.0000', '8471.0000', '93181.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '93181.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5af8371ad5251d0551c9af5b15cf6ebd869668c296a2eb4263a403350643d3f4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (404, '2023-11-10 17:15:54', 'SALE/POS2023/11/0308', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '135.0000', '135.0000', '0.0000', '193.5000', '2128.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2128.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6b6cf2e8856865cfa96e8f72422d065344d9fc1e2cda47ff3195318c5d32fc8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (405, '2023-11-10 17:29:39', 'SALE/POS2023/11/0309', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '40700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3052.5000', '3052.5000', '0.0000', '4375.2500', '48127.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '48127.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a9df616c6d6c91379ee65dbd9fa9de715a8755b967467aa1a5813446183aec2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (406, '2023-11-10 17:34:22', 'SALE/POS2023/11/0310', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '36300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2722.5000', '2722.5000', '0.0000', '3902.2500', '42924.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '42924.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f198c061767fd843f2a7e80ff6c2fc020064b43ff08b96feea3be21c64ffb2f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (409, '2023-11-10 18:07:30', 'SALE/POS2023/11/0311', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1222.5000', '1222.5000', '0.0000', '1752.2500', '19274.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '19274.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '17100249595c17f9fee18b758aefc169f8a4a3545a1ec3042c142b033bf0f221', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (410, '2023-11-10 18:39:41', 'SALE/POS2023/11/0312', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '817.5000', '817.5000', '0.0000', '1171.7500', '12889.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '12889.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '75141a88d9669f9262ae4253876dda4bcb416bc4b69671834db19de6645cd2ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (413, '2023-11-10 19:40:56', 'SALE/POS2023/11/0313', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '31700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2377.5000', '2377.5000', '0.0000', '3407.7500', '37485.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '37485.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6bc86cf88b2ae61bea670fa654f1d4d2ade05ce501e33e0720ca5c864b44ec3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (414, '2023-11-10 20:10:05', 'SALE/POS2023/11/0314', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '65190.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '4950.0000', '5759.0900', '0.0000', '7095.0000', '78045.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '78045.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9215d03591b766104106d74e2b46dcec2e477dd50b8329fa82cbd309906cec14', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (415, '2023-11-10 20:32:21', 'SALE/POS2023/11/0315', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '69681.8200', '0.0000', '', '0.0000', '0.0000', '1618.1800', 4, '5347.5000', '6965.6800', '0.0000', '7664.7500', '84312.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '84312.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '79ad9363ecd9a3552ab3c961a5176ddc70fc99db1c89c91e75caf778cbfcab59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (416, '2023-11-10 20:41:10', 'SALE/POS2023/11/0316', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '19400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1455.0000', '1455.0000', '0.0000', '2085.5000', '22940.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '22940.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c454649c681bef15be2f0c96828e88c3f05b73718f686706b7ab9fd876eac02', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (419, '2023-11-10 21:21:19', 'SALE/POS2023/11/0317', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '75.0000', '75.0000', '0.0000', '107.5000', '1182.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1182.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27b01732b8590f5417f36f82c21fb1af922fa8a5df665253382f26b0f7c68f5e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (420, '2023-11-10 21:38:23', 'SALE/POS2023/11/0318', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '952.5000', '952.5000', '0.0000', '1365.2500', '15017.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '15017.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9653dd51fcc726b2924187e59e43233dcd0255dd81854f41243ee49c46a98080', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (422, '2023-11-10 22:55:04', 'SALE/POS2023/11/0319', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1230.0000', '1230.0000', '0.0000', '1763.0000', '19393.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '19393.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8dfaa4b95556643d5ae8c42590e3493f323457c73b4dfe7b7ba36eee89c3ae7b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (424, '2023-11-11 14:57:59', 'SALE/POS2023/11/0320', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '72300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '5422.5000', '5422.5000', '0.0000', '7772.2500', '85494.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '85494.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8734e18753b58070b43a1602f47182f7c0c69ec4f25f178827e105ef3dc9be9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (429, '2023-11-11 16:53:23', 'SALE/POS2023/11/0321', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '967.5000', '967.5000', '0.0000', '1386.7500', '15254.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '15254.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e58f01f1456ec29c2ae89e3ea52b64952616881921a2aa8eabb5a2109a28b5b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (430, '2023-11-11 17:00:11', 'SALE/POS2023/11/0322', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '322.5000', '3547.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '3547.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bca772221a179561b6b5d8298f11506ee95e1078c0de4f5c15be130366994e93', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (431, '2023-11-11 17:02:03', 'SALE/POS2023/11/0323', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '322.5000', '3547.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '3547.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12d06f59e19efe2ec4ef597957a762652e0cdf2c6ceb912a74e12a8e663671ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (432, '2023-11-11 17:13:56', 'SALE/POS2023/11/0324', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1372.5000', '1372.5000', '0.0000', '1967.2500', '21639.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '21639.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '967a1ec9dfe1bc07f1028771ff5354743c5e386ffcdb18e8c377c12ab580230e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (436, '2023-11-11 18:14:14', 'SALE/POS2023/11/0325', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '189572.7300', '0.0000', '', '0.0000', '0.0000', '2427.2700', 4, '14400.0000', '16827.2700', '0.0000', '20640.0000', '227040.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 39, 1, '227040.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'acb6b06580e95cbaa2d150f5573c0713e8d87b222fc926898faad5df2cdca1ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (437, '2023-11-11 18:18:28', 'SALE/POS2023/11/0326', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '23800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1785.0000', '1785.0000', '0.0000', '2558.5000', '28143.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '28143.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'adf48cc85bc1d17e8a27a1b583a1c40b8a8062b26659190d514002def85370ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (438, '2023-11-11 18:25:35', 'SALE/POS2023/11/0327', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '52990.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '4035.0000', '4844.0900', '0.0000', '5783.5000', '63618.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '63618.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86808cc514d94396b321c9366de87a3eaf65239f9440f364b718ddaef1f89021', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (439, '2023-11-11 18:58:06', 'SALE/POS2023/11/0328', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '26500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1987.5000', '1987.5000', '0.0000', '2848.7500', '31336.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '31336.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eca36b8c9fc4f78482bc6b2ccacd6976369d5761608d9605504bff2c9f8b2a87', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (441, '2023-11-11 19:06:48', 'SALE/POS2023/11/0329', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '53.7500', '591.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '591.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'de1222cf59caf24e47cbf17a55eb80d336def6eb54c70efff26095b21dc91091', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (442, '2023-11-11 19:08:11', 'SALE/POS2023/11/0330', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '262.5000', '262.5000', '0.0000', '376.2500', '4138.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '4138.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3ea76bde819c1ce94a996d7e101d9e65eb781f14230f7b7695cd80b80d1c0f5d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (447, '2023-11-11 19:40:13', 'SALE/POS2023/11/0331', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '375.0000', '375.0000', '0.0000', '537.5000', '5912.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '5912.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16892587fa0747cb81853171b8122ededd080b09b205b57e309f4ba61c7fd79f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (448, '2023-11-11 20:07:59', 'SALE/POS2023/11/0332', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '675.0000', '675.0000', '0.0000', '967.5000', '10642.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '10642.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5fc66aa169a3825bcb0b7c9cc5f1a8a342f3df94fbd8e007f5b8a2cd7f19845b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (452, '2023-11-11 20:48:27', 'SALE/POS2023/11/0333', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '322.5000', '3547.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3547.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '58e9dd449c86ae163a692187c9b62ee3abc182253ff1372c892b0ba2bbba3b02', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (454, '2023-11-11 20:56:23', 'SALE/POS2023/11/0334', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '215.0000', '2365.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2365.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b86fb91a7b1b07c33a8e0a1a12d77900a0af8fcfdc32fb7e77519873907ca0c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (455, '2023-11-11 20:57:10', 'SALE/POS2023/11/0335', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '215.0000', '2365.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2365.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '479213ad366cdbb55b4852774e97c2e4af8442c71aa8af4e0f03b1009c7b37a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (456, '2023-11-11 21:01:31', 'SALE/POS2023/11/0336', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1260.0000', '1260.0000', '0.0000', '1806.0000', '19866.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '19866.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac23fb0eeffedfa95e0241b346c7a4675d69364969a3a273813fc6b9f3edf449', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (457, '2023-11-11 21:19:49', 'SALE/POS2023/11/0337', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '21500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1612.5000', '1612.5000', '0.0000', '2311.2500', '25423.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '25423.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8567637259f12533b238c7fa63eef8ea3d938fb48c211fb8fe95c8c6a1365a8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (458, '2023-11-11 21:26:42', 'SALE/POS2023/11/0338', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '19000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1425.0000', '1425.0000', '0.0000', '2042.5000', '22467.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '22467.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'acf8e4aeb208551537797f45385e6b5aae35466d09bce31b4933006abcb7e8fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (461, '2023-11-12 11:45:54', 'SALE/POS2023/11/0340', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '36600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2745.0000', '2745.0000', '0.0000', '3934.5000', '43279.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '43279.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07ca9349a67ee2fc5b47b691e870493fa7733f4541424efb85d3c523c8de49fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (463, '2023-11-12 12:56:32', 'SALE/POS2023/11/0341', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1260.0000', '1260.0000', '0.0000', '1806.0000', '19866.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '19866.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a9cc15ac93deaa1a4fe1e57f95985f9d66457fad29feb1739ea6ed20b6bf3a0e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (464, '2023-11-12 13:17:30', 'SALE/POS2023/11/0342', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '28800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2160.0000', '2160.0000', '0.0000', '3096.0000', '34056.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '34056.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8019682d6f3baa92eed417b58a36899d739516b0e94227d1594d173985fc9b3c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (465, '2023-11-12 13:38:56', 'SALE/POS2023/11/0343', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '930.0000', '930.0000', '0.0000', '1333.0000', '14663.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '14663.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '17c3d40594fa7b304ff71221c9e8738c68340c7dcca429c28ffcdf75168b64d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (466, '2023-11-12 13:45:37', 'SALE/POS2023/11/0344', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '900.0000', '900.0000', '0.0000', '1290.0000', '14190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '14190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9aa172336674727a68204defdb31aabb6f1eb8c60ab139f15db499f029a0daad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (473, '2023-11-12 17:08:09', 'SALE/POS2023/11/0345', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '322.5000', '3547.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3547.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1403fc0c1a2576e616053896ecb4c2590cd24aaf492f4b03d235ac15e76e0dd2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (475, '2023-11-12 17:45:35', 'SALE/POS2023/11/0346', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '855.0000', '855.0000', '0.0000', '1225.5000', '13480.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '13480.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4aa983979d2d641574d3877e248fc986b2314b6670b694c75b5a02a2b2e0db0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (476, '2023-11-12 17:55:27', 'SALE/POS2023/11/0347', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '56900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4267.5000', '4267.5000', '0.0000', '6116.7500', '67284.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '67284.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec79ae7b0a98099ed448ce0de2684ebf3717b2736a67a9eed8a7b6f1953f010a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (478, '2023-11-12 18:06:21', 'SALE/POS2023/11/0348', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '215.0000', '2365.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2365.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5727a65dd4781b9fa3b1ea9edef2f0453e2ff7c987d3973d3708e6e14b6622b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (480, '2023-11-12 19:24:32', 'SALE/POS2023/11/0349', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '90500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '6787.5000', '6787.5000', '0.0000', '9728.7500', '107016.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '107016.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70010b7603edf0cc37856d83689c7bb84b4754e68314e86524d6146db465301d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (482, '2023-11-12 20:11:52', 'SALE/POS2023/11/0350', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '20590.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '1605.0000', '2414.0900', '0.0000', '2300.5000', '25305.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '25305.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5c65632a379fa909cef374e5dcb936daa03ce84409dec33c57d173bddd6f16c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (483, '2023-11-12 20:18:27', 'SALE/POS2023/11/0351', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '100000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '7500.0000', '7500.0000', '0.0000', '10750.0000', '118250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '118250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2521b5f5b62675958844aa3b9569b6a1080d98e6ffd964f4479920cc96a65f6b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (484, '2023-11-12 20:39:00', 'SALE/POS2023/11/0352', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '430.0000', '4730.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4730.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b2c1357597cadcdf14e93e5654aec3cd9a064a14f2fd78f670ebe562245ebc8c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (485, '2023-11-12 20:47:14', 'SALE/POS2023/11/0353', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1297.5000', '1297.5000', '0.0000', '1859.7500', '20457.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '20457.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '73224cc050be8f7500a9af364357fce6f56484d849b4ce237c29f93ce74df52d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (486, '2023-11-13 11:00:09', 'SALE/POS2023/11/0354', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1410.0000', '1410.0000', '0.0000', '2021.0000', '22231.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '22231.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '385a64a39e8318fbb35e7f61d53efd2b8a3c78705ed84d2be0cf2df9804b8543', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (490, '2023-11-13 12:35:56', 'SALE/POS2023/11/0356', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1230.0000', '1230.0000', '0.0000', '1763.0000', '19393.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '19393.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd62cde1d55802065455ca6d18577606f20faac2db253c9787fa34ef7f3cd42cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (491, '2023-11-13 12:44:40', 'SALE/POS2023/11/0357', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1800.0000', '1800.0000', '0.0000', '2580.0000', '28380.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '28380.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c804ec3bed0da6e36aaddb4f66a955d26593398532246512ae5ea93558f3500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (492, '2023-11-13 13:08:56', 'SALE/POS2023/11/0358', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '28500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2137.5000', '2137.5000', '0.0000', '3063.7500', '33701.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '33701.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '620f0a403312e664f253ffe6af88e71ae5b34cb1ecda4cc572dbcddfb3f83a73', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (494, '2023-11-13 14:55:31', 'SALE/POS2023/11/0359', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '262.5000', '262.5000', '0.0000', '376.2500', '4138.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4138.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00eec2b12ac5ad37154def6af58e6d74cc975e332ea200a827a29bae0a6596e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (496, '2023-11-13 16:08:09', 'SALE/POS2023/11/0360', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '44700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3352.5000', '3352.5000', '0.0000', '4805.2500', '52857.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '52857.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9588f45ab656588cda6f9b64672bfe0603d185af22038b9db0cd65bdfbff0752', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (500, '2023-11-13 19:36:47', 'SALE/POS2023/11/0361', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '52981.8200', '0.0000', '', '0.0000', '0.0000', '1618.1800', 4, '4095.0000', '5713.1800', '0.0000', '5869.5000', '64564.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '64564.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eee5b844d8d321e7bdf61052caed5745d9d5f044f320f0380073c7dc4648fec4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (501, '2023-11-13 19:45:34', 'SALE/POS2023/11/0362', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '57500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4312.5000', '4312.5000', '0.0000', '6181.2500', '67993.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '67993.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '350ad8566075ba95772ed78a32472ef2290dd4672eae458fae4b397d8475f27e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (502, '2023-11-13 19:59:43', 'SALE/POS2023/11/0363', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '28700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2152.5000', '2152.5000', '0.0000', '3085.2500', '33937.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '33937.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b7b7e4b95d0660fbc585b0bc52323a993cd7b14d0b3c0a6174a426ba6c77359', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (504, '2023-11-13 20:21:54', 'SALE/POS2023/11/0364', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '53.7500', '591.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '591.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a502925d17ffdbb2b314540b4e913db405beb3336c81141fa85fe61113028dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (505, '2023-11-13 20:22:48', 'SALE/POS2023/11/0365', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '53.7500', '591.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '591.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a32c1f20efb9b32d48bd3e38260dbb0e3b8e8d4fc6a698dc310e390ffd7e5d3a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (506, '2023-11-13 20:23:43', 'SALE/POS2023/11/0366', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '53.7500', '591.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '591.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a627913ade2e68e792d84ebeca548ea9995c39e3581bac8a8bad2572b35b2fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (507, '2023-11-13 20:51:38', 'SALE/POS2023/11/0367', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '43200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3240.0000', '3240.0000', '0.0000', '4644.0000', '51084.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '51084.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b2c853c688889ca8ead450bd6023ff1c215425a791a055d1a2e785776a9927b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (509, '2023-11-13 22:08:29', 'SALE/POS2023/11/0368', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2197.5000', '2197.5000', '0.0000', '3149.7500', '34647.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '34647.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2172023e5452aad6d36a9ce895ecd52c4e2f02a2735f4e31856f87c45984d0c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (515, '2023-11-14 11:50:04', 'SALE/POS2023/11/0371', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '39600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2970.0000', '2970.0000', '0.0000', '4257.0000', '46827.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '46827.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ccb040c240bb1ae78c4a2b9582c68348efde74758d22dccca8a152c69d0c057', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (518, '2023-11-14 13:08:31', 'SALE/POS2023/11/0372', 5, 'Table 2', 3, 'kunakornthairestaurant', 1, '', '', '35700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2677.5000', '2677.5000', '0.0000', '3837.7500', '42215.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '42215.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ea6292ae9b53b12978e612c2141700030885b1119ff76816c06cf1fe9142dd0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (520, '2023-11-14 13:32:10', 'SALE/POS2023/11/0373', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '166800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '12510.0000', '12510.0000', '0.0000', '17931.0000', '197241.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 34, 1, '197241.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c16b7e691f0b7c25196b9c2f1a44a534bb90709027f30f0026f3d5a4b2c36960', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (522, '2023-11-14 13:46:22', 'SALE/POS2023/11/0374', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '322.5000', '3547.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '3547.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c262811e92de243a9839df5341e3b455352ff704a2f5c425a6381aa598522aa5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (523, '2023-11-14 13:48:47', 'SALE/POS2023/11/0375', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '20300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1522.5000', '1522.5000', '0.0000', '2182.2500', '24004.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '24004.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bee95dfdf6b7043e63f03d2b14e0d3a106027e80df9fd7ac00105d2563f8a176', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (525, '2023-11-14 14:57:25', 'SALE/POS2023/11/0377', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '13500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1012.5000', '1012.5000', '0.0000', '1451.2500', '15963.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '15963.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '486e0ac91a129fb4c1b9e6e59608ec77e153dc6c8f9a37f60e6ad28d04dd3185', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (528, '2023-11-14 19:14:49', 'SALE/POS2023/11/0378', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '45600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3420.0000', '3420.0000', '0.0000', '4902.0000', '53922.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 7, 1, '53922.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d06ee5de6762422e3f7cd0b0231e9e53161be2a5e8f27e194b4a3c0cbd14842', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (529, '2023-11-14 19:28:34', 'SALE/POS2023/11/0379', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '14400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1080.0000', '1080.0000', '0.0000', '1548.0000', '17028.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '17028.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd69de0ea91c07fd5c04833f60491446e0542ba797cc56057aa16efb7601ef8c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (533, '2023-11-14 21:18:59', 'SALE/POS2023/11/0380', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '33890.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2602.5000', '3411.5900', '0.0000', '3730.2500', '41032.7500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '41032.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a086c843a2272398ddf454a31759af4dcaa1d34e6d80d3f36ba0b87abe895e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (534, '2023-11-14 21:26:31', 'SALE/POS2023/11/0381', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '430.0000', '4730.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '4730.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '687c4f88a85fd1ed975cf1e9108dab7f1796b1589f2f3797bb88fcb03a548450', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (535, '2023-11-14 22:18:47', 'SALE/POS2023/11/0382', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '215.0000', '2365.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '2365.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e46c9cd52bf68eadcaf97918f29e5ab2eed799b9d8713c8d6d5d5770b2f603ae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (536, '2023-11-14 22:20:50', 'SALE/POS2023/11/0383', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '337.5000', '337.5000', '0.0000', '483.7500', '5321.2500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '5321.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dcd10a60acf5a84854bcc8a15f88a62d64390239329c850213a3bfdbd4a6abce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (540, '2023-11-15 13:51:42', 'SALE/POS2023/11/0385', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '52200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3915.0000', '3915.0000', '0.0000', '5611.5000', '61726.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '61726.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bed9fe1393beca04bc25aab98f823b168aa151bec0812a26e00c6d6a2604adf4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (542, '2023-11-15 14:02:06', 'SALE/POS2023/11/0386', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2025.0000', '2025.0000', '0.0000', '2902.5000', '31927.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '31927.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '75e51a83a619754cf4822c97764c23c7742af41e7d2a28bba9ee090d58295797', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (543, '2023-11-15 14:04:32', 'SALE/POS2023/11/0387', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '675.0000', '675.0000', '0.0000', '967.5000', '10642.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '10642.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20d06dacee5b309d1eedf8b45d81a33d91ea750a32794803c44bcfa2924b5586', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (544, '2023-11-15 14:08:48', 'SALE/POS2023/11/0388', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '46190.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '3525.0000', '4334.0900', '0.0000', '5052.5000', '55577.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '55577.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '596d5c610a2512b5a6d2c85f5177e8cd63c78d5c5b50d4e84d278f776573e177', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (546, '2023-11-15 14:49:23', 'SALE/POS2023/11/0389', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '337.5000', '337.5000', '0.0000', '483.7500', '5321.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '5321.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29da798fbd9ce84d6f1a7adc1aae6f45c34fc9612a0a4fc6f18870a6ced46b96', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (548, '2023-11-15 15:28:00', 'SALE/POS2023/11/0390', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '26200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1965.0000', '1965.0000', '0.0000', '3031.5000', '28165.0000', 'completed', 'paid', 0, NULL, 2, 2, '2023-11-15 16:17:11', 6, 1, '33346.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89dbd3a7450be18e23069fb933f3d51542cb893be5452841fea55fc8abb2aea5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (549, '2023-11-15 16:13:53', 'SALE/POS2023/11/0391', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '63390.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '4815.0000', '5624.0900', '0.0000', '6901.5000', '75916.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '75916.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f49bbbe564f68478cdc082ba52ffe475a020a27ca79cd8568cf33dea76e513ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (550, '2023-11-15 16:36:12', 'SALE/POS2023/11/0392', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '337.5000', '337.5000', '0.0000', '483.7500', '5321.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '5321.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ddea25d66fa4411cbb2830596b611c732339010903f7a59f9b283c388513cdf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (554, '2023-11-15 18:46:59', 'SALE/POS2023/11/0393', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '58500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4387.5000', '4387.5000', '0.0000', '6288.7500', '69176.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '69176.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd953d166c4b3e8cbf92c0cfc130947e02d2817ad85d30af28cb41e1a459fb719', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (555, '2023-11-15 18:53:11', 'SALE/POS2023/11/0394', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '52700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3952.5000', '3952.5000', '0.0000', '5665.2500', '62317.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '62317.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4401094908ee39c441b74584c77c613c85041e4d05c58fb275dc4fb69bfa33db', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (556, '2023-11-15 19:14:37', 'SALE/POS2023/11/0395', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '31300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2347.5000', '2347.5000', '0.0000', '3364.7500', '37012.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '37012.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '04ac5122d33bb1390ca69fc998a66d818887e30ba9090d65ef9fa0695ac5af7c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (558, '2023-11-15 20:13:07', 'SALE/POS2023/11/0396', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '28700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2152.5000', '2152.5000', '0.0000', '3085.2500', '33937.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '33937.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8ea7338e054130282e4cfe3df407be21ea717d0ade01f4f52f8c816769292576', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (559, '2023-11-15 20:33:29', 'SALE/POS2023/11/0397', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1260.0000', '1260.0000', '0.0000', '1806.0000', '19866.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '19866.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0bc6e8c42c88741224b5746f10219bd07d823f32a76cf4bcb1bf5787392a0f34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (562, '2023-11-16 14:56:29', 'SALE/POS2023/11/0399', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '7900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '592.5000', '592.5000', '0.0000', '849.2500', '9341.7500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '9341.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e61b5aa082ecfbc4ffbc6160962956bd49f55d88c5c720f5a96f9c84121aa338', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (563, '2023-11-16 15:26:42', 'SALE/POS2023/11/0400', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '23700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1777.5000', '1777.5000', '0.0000', '2547.7500', '28025.2500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '28025.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e4ac4def21681fe23fc1389e5450e982f14be211b90604f19f0578fc7655cdfc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (565, '2023-11-16 16:52:20', 'SALE/POS2023/11/0401', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '215.0000', '2365.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '2365.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee7f1bb9ebb3f688e8290a9d1c3322bb9a2743428ab9bd824d9ee5a6356e713d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (568, '2023-11-16 20:06:00', 'SALE/POS2023/11/0402', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '30700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2302.5000', '2302.5000', '0.0000', '3300.2500', '36302.7500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 9, 1, '36302.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63c82a6d566bc195d9489ba30eeb3ba725f80d79373a51afe714ca35ba576e24', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (569, '2023-11-16 20:18:17', 'SALE/POS2023/11/0403', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '28790.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2220.0000', '3029.0900', '0.0000', '3182.0000', '35002.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '35002.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '737a73ffa6d7a28317f2e49460584e24a3e21ddcb71495104befbe9f57d5830d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (571, '2023-11-16 21:22:57', 'SALE/POS2023/11/0404', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '375.0000', '375.0000', '0.0000', '537.5000', '5912.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '5912.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6ae8ba383bc2a618c4f2cc2ccb293f979a9593612c27f51a33eb60bc5a55dfc7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (572, '2023-11-16 21:38:55', 'SALE/POS2023/11/0405', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '855.0000', '855.0000', '0.0000', '1225.5000', '13480.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '13480.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ded98e8dd6a8db819eba5bf7bfd97d574e505a0a105ed4832ff5de4e020bc8d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (573, '2023-11-16 21:41:20', 'SALE/POS2023/11/0406', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '19300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1447.5000', '1447.5000', '0.0000', '2074.7500', '22822.2500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '22822.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a9238b8485b6b7079c7ca581b53752b3ed53693d777f86f22e683c59ef90832', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (576, '2023-11-17 14:07:46', 'SALE/POS2023/11/0407', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '42600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3195.0000', '3195.0000', '0.0000', '4579.5000', '50374.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '50374.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9734eedc38a53b833cad7f972756a5ce6911f8689014db786f2cf62f327cf6c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (579, '2023-11-17 18:02:19', 'SALE/POS2023/11/0408', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '31200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2340.0000', '2340.0000', '0.0000', '3354.0000', '36894.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '36894.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bed291151dbc1141afb5616e875c31dce014cc690d4d65c97d625a71bf248044', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (580, '2023-11-17 19:02:05', 'SALE/POS2023/11/0409', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '82372.7300', '0.0000', '', '0.0000', '0.0000', '2427.2700', 4, '6360.0000', '8787.2700', '0.0000', '9116.0000', '100276.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 23, 1, '100276.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3c203799425f88791d6e45b360ad64c400edee5e2be818b7d4b6de43c705357', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (581, '2023-11-17 19:05:24', 'SALE/POS2023/11/0410', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '51000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3825.0000', '3825.0000', '0.0000', '5482.5000', '60307.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '60307.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '625e43d15a196efcd18583681214c99009ada1cda231d7dba686440fb6cdbe90', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (584, '2023-11-17 20:36:11', 'SALE/POS2023/11/0412', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '215.0000', '2365.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2365.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb63a782bbea8e082438cc26069c60cea8394044bfe6a3e60852747b4646f6ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (585, '2023-11-17 20:49:50', 'SALE/POS2023/11/0413', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1410.0000', '1410.0000', '0.0000', '2021.0000', '22231.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '22231.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12187bf24db6089587feae8469d13cbd564af17649e2638c7bc3254e3bcbadfd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (587, '2023-11-17 20:59:49', 'SALE/POS2023/11/0414', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1372.5000', '1372.5000', '0.0000', '1967.2500', '21639.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '21639.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e9b0b8a19eed66c68545949c1f500ee22afa6cec3e08af450441751b32a488f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (588, '2023-11-17 21:48:14', 'SALE/POS2023/11/0415', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '55800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4185.0000', '4185.0000', '0.0000', '5998.5000', '65983.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '65983.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e77f7319223ff7892aba089b550abf600c80e0e4f224a27dcd7f6df98f297ec7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (591, '2023-11-17 22:23:05', 'SALE/POS2023/11/0416', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '21800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1635.0000', '1635.0000', '0.0000', '2343.5000', '25778.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '25778.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c92baa08deb3b86fb52efb046a1aad1c3c981e8543cf982774f5f62e4278ec88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (592, '2023-11-17 22:28:17', 'SALE/POS2023/11/0417', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1305.0000', '1305.0000', '0.0000', '1870.5000', '20575.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '20575.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '19d473ebcec47339b626395c9c0e8ff7775fb0ffc81fdb3a06ed3d59833b795a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (598, '2023-11-18 14:09:35', 'SALE/POS2023/11/0419', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '23800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1785.0000', '1785.0000', '0.0000', '2558.5000', '28143.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 9, 1, '28143.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '308987e075fb55c5fdf502c3e2984bf76d7651f8adf1e9ac273cf209f8f960bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (599, '2023-11-18 14:14:27', 'SALE/POS2023/11/0420', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '26700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2670.0000', '29370.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '29370.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce6c27fa44593ea5318fd00bed2b0e4f6146ba4d32edf92122d37b49e06ac1a5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (600, '2023-11-18 14:22:43', 'SALE/POS2023/11/0421', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1822.5000', '1822.5000', '0.0000', '2612.2500', '28734.7500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 7, 1, '28734.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4406e43ba828c1ecb4f6173d3fcf33ec6e5bd4470f74b281e48fa5ed5b2eb1a9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (602, '2023-11-18 16:53:35', 'SALE/POS2023/11/0422', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '7100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '710.0000', '7810.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '7810.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd67fdd97792e31c06c5fec2762d4fe9faf51cfa003c689cd93d1012c868d4bc3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (605, '2023-11-18 17:48:12', 'SALE/POS2023/11/0423', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1780.0000', '19580.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '19580.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f7321c6b55e9a075484e5be43200f269f571649471c47e9606186c8275df9ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (606, '2023-11-18 18:07:33', 'SALE/POS2023/11/0424', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '652.5000', '652.5000', '0.0000', '935.2500', '10287.7500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '10287.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc042cf4e834c10d801e4f78919b4bfaae3bffe6f4d1ee83e7514b336949e84f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (609, '2023-11-18 19:56:12', 'SALE/POS2023/11/0425', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '45600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3420.0000', '3420.0000', '0.0000', '4902.0000', '53922.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 11, 1, '53922.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '849aef8f31da834aa159fed98a5bc15e0b51d6f10884e29ba472f649811e0c03', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (610, '2023-11-18 20:01:12', 'SALE/POS2023/11/0426', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '35800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1790.0000', '39380.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 9, 1, '39380.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3cce537ead3a4145b3d82860c74efbfdd6757cc428e762a013fb1717d73c342', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (613, '2023-11-18 20:39:26', 'SALE/POS2023/11/0427', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '161.2500', '3386.2500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '3547.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7198dd97590430685b635bc5ef0ee58cfb1ab262806f8187c7c0cbad923ba80', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (615, '2023-11-18 21:03:30', 'SALE/POS2023/11/0428', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '34200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1710.0000', '35910.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '37620.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '919c61a217d075a2dbc3ebaeb0f2e8bb5257cf5e220f0a317572bb89b85dcd15', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (617, '2023-11-18 21:29:17', 'SALE/POS2023/11/0429', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '75.0000', '75.0000', '0.0000', '107.5000', '1182.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '1182.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '267f8e7c3e55d291d8ebb397879a2aa193b2ec9af28b29612e81d89379894859', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (618, '2023-11-18 21:32:33', 'SALE/POS2023/11/0430', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '39600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2970.0000', '2970.0000', '0.0000', '4257.0000', '46827.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 8, 1, '46827.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9456b2c1504e7baf7083da70c3560ac3181be6496666de9b05f4f0fc39224480', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (620, '2023-11-18 22:37:51', 'SALE/POS2023/11/0431', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2920.0000', '32120.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 8, 1, '32120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07016eb432717a04a4dbc5d23c3d2e8c944a923ea274ef9d2350a797dfbbabc6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (621, '2023-11-19 12:50:42', 'SALE/POS2023/11/0432', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '817.5000', '817.5000', '0.0000', '1171.7500', '12889.2500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '12889.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1fe63c0fbfcf64218bb167708c3a40257b127d9ee96fd319e0ba80d7fc26ffd3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (624, '2023-11-19 15:06:35', 'SALE/POS2023/11/0433', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '36390.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2790.0000', '3599.0900', '0.0000', '3999.0000', '43989.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 9, 1, '43989.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81923aa2b9b809e37ad5e39067663ff793830a21896be4e67567857c04e9494a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (626, '2023-11-19 16:05:44', 'SALE/POS2023/11/0434', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '78590.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 1, '0.0000', '809.0900', '0.0000', '7940.0000', '87340.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 11, 1, '87340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd54f610cc74b2525d37ff967def25007316bcbf9ad30024210d39693784d1277', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (627, '2023-11-19 16:08:54', 'SALE/POS2023/11/0435', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '66100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6610.0000', '72710.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 10, 1, '72710.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c417dbe0e14789cb2a774b119dfd271a675e22bfcc16e6b13daecf410d36072', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (630, '2023-11-19 18:01:03', 'SALE/POS2023/11/0436', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', '2750.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '2750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '33d88a7519cb9a04ef9c24d57773feca2b45506d62218382b7d82e35181ba74c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (632, '2023-11-19 18:07:29', 'SALE/POS2023/11/0438', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2470.0000', '27170.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '27170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3a245032f5a2fad360ebbd042bb94dc773545bd06ee71ab05c4c10beeab2f4d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (635, '2023-11-19 18:30:36', 'SALE/POS2023/11/0439', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '25300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2530.0000', '27830.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 8, 1, '27830.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad82e1e3d97ebe53cb4f1bfd86dc69f5899befd997381a155f2caf9e7a811c18', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (637, '2023-11-19 19:12:48', 'SALE/POS2023/11/0440', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '98390.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 1, '0.0000', '809.0900', '0.0000', '9920.0000', '109120.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 15, 1, '109120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dea73a6d41871153d6b77cab662703a4f5d4fffd228cabc5a375619e16412b0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (639, '2023-11-19 19:23:55', 'SALE/POS2023/11/0441', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '35000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', '38500.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '38500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3165bbcee9430ed1f2e4eb8fda6216ee6ef35aef4246fd9d70490fe9834116a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (641, '2023-11-19 20:05:13', 'SALE/POS2023/11/0442', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '55300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5530.0000', '60830.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 7, 1, '60830.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b58c0fa3f62c2371d419303cae21bccd942e98ffca875e9feca3ed3f8a561a5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (643, '2023-11-19 20:34:16', 'SALE/POS2023/11/0444', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '11500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '862.5000', '862.5000', '0.0000', '1236.2500', '13598.7500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '13598.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '349b49d57f75d8ca9e2c061021f852e061a76658aa615c250b0223035c1ba93d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (644, '2023-11-19 20:39:43', 'SALE/POS2023/11/0445', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '22300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2230.0000', '24530.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '24530.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8bb6a5ade222a5b82ca326da9fc0b625e0086578e0bde96b7654f9868cf9100e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (645, '2023-11-19 20:48:09', 'SALE/POS2023/11/0446', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '44500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4450.0000', '48950.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 9, 1, '48950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '975202f95f60c8577593941153b39eb6862911ba4f789a9601ddebe7b0ed1ef1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (649, '2023-11-20 16:21:18', 'SALE/POS2023/11/0447', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1790.0000', '19690.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '19690.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43012f0ee35e8053410c7dd00a400dd79ccd59ad9654015d1f5259697375417d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (653, '2023-11-20 16:37:31', 'SALE/POS2023/11/0451', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '40000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', '44000.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 14, 1, '44000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09d1a93940950ef65d8372cf93423b5eac4397479597e0f3f3f69e65b341ff00', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (654, '2023-11-20 16:55:26', 'SALE/POS2023/11/0452', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '39100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3910.0000', '43010.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 7, 1, '43010.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6ce22f5db723b48efd7240950382e5b2161fee4707c543afb7f85bce0283e08', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (655, '2023-11-20 18:35:17', 'SALE/POS2023/11/0453', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '46600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4660.0000', '51260.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '51260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5226c9d02c18a490ceb7da149d7605c4c235a470512261187e23573a316fafdc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (660, '2023-11-20 19:11:34', 'SALE/POS2023/11/0454', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', '8800.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '8800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '819b40f0d8268bc9555f5e1fd46060245716084be325b6e34c4b586ec4aaa82d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (661, '2023-11-20 19:20:20', 'SALE/POS2023/11/0455', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2770.0000', '30470.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '30470.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0a6a733e336919e21c08e20dc6d9a32b5aaf84f9b48a0983b578d48c0ce41dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (665, '2023-11-20 20:12:38', 'SALE/POS2023/11/0456', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '56000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5600.0000', '61600.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 8, 1, '61600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d4431b0babd41a7a01a332cbaffdf0dc9ff226ed49d99e5faaebd45f6aabd88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (666, '2023-11-20 20:32:13', 'SALE/POS2023/11/0457', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '95300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9530.0000', '104830.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 20, 1, '104830.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'feee5950dd0a4c294eae66cd3baeba749461dcc478e7706e487dcdd11de6f825', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (667, '2023-11-20 20:52:01', 'SALE/POS2023/11/0458', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '25800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2580.0000', '28380.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '28380.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3b075018a0fea53beccebd631b98c8fc883999a665c9e1ccc6f907bb59004e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (668, '2023-11-20 20:53:16', 'SALE/POS2023/11/0459', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1730.0000', '19030.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '19030.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a67060f3ddb376e1e57abd4c8cb18fbf0bd323fc30dd4d6d714d85e02d9abe55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (672, '2023-11-20 21:16:26', 'SALE/POS2023/11/0460', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '940.0000', '10340.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '10340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e84fd8ae228dca0d2fdb70552fc039bdb54781e77f78a9a01e5178fac300634', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (674, '2023-11-20 21:32:52', 'SALE/POS2023/11/0462', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '129190.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 1, '0.0000', '809.0900', '0.0000', '13000.0000', '143000.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 24, 1, '143000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '332cc5e9c9914c858a823de27515c115208b9135d0827c7ec4a5b77ca2be34cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (676, '2023-11-20 21:48:22', 'SALE/POS2023/11/0464', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '20000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '22000.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '22000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6d257a1a01c2a1719930e419d763b393f86c12128c8146819445ef351e42cc69', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (677, '2023-11-20 21:52:41', 'SALE/POS2023/11/0465', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '33890.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 1, '0.0000', '809.0900', '0.0000', '3470.0000', '38170.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '38170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2d1bc6d8bc09b72269bdb3920417b144e60b929cd7ee784de6846c2c7acf485', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (679, '2023-11-21 14:15:39', 'SALE/POS2023/11/0466', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '35200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3520.0000', '38720.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 8, 1, '38720.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dff2e46a0759a92e7b2e0df7a844c64df690acdd3db12f1d5dd7c201ee16e807', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (683, '2023-11-21 17:29:23', 'SALE/POS2023/11/0467', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '55200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5520.0000', '60720.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '60720.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e4776409053fb2c6cb274cbf8900dda51b2603da8b7d104a94da72cf2a468bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (687, '2023-11-21 19:10:03', 'SALE/POS2023/11/0468', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '890.0000', '9790.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '9790.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76eae98235d3fa36b5834abca1b94273c10e7fb2a7833de67ae72da38dd49129', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (688, '2023-11-21 19:11:53', 'SALE/POS2023/11/0469', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '35390.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 1, '0.0000', '809.0900', '0.0000', '3620.0000', '39820.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '39820.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fbc9b9bb21069ab11db4c0cb142a64d23d0fbe257d2f1e27d7b095dd9a169f4e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (690, '2023-11-21 19:43:40', 'SALE/POS2023/11/0470', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '49300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4930.0000', '54230.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '54230.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6ca5bf8ce8b5555ab0280296b9c9caa105326e8142999791ba5d9e50eef1dba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (691, '2023-11-21 20:13:49', 'SALE/POS2023/11/0471', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1417.5000', '1417.5000', '0.0000', '2031.7500', '22349.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '22349.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0cde0b55a8086d7cddd16ef0dab17eb0fa87279e52dc327b520f5fd1e65f59d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (692, '2023-11-22 13:37:13', 'SALE/POS2023/11/0472', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2077.5000', '2077.5000', '0.0000', '2977.7500', '32755.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '32755.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9292a71f3c12c57aba8446d2ff94fc4921ce70910fb0ef730c42a8be65170538', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (694, '2023-11-22 14:54:45', 'SALE/POS2023/11/0473', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1260.0000', '1260.0000', '0.0000', '1806.0000', '19866.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '19866.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a8affc346a35eb76b36ffdab1811524c5f2a75c6303e8b89378e1d3047d33b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (695, '2023-11-22 15:45:24', 'SALE/POS2023/11/0474', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2227.5000', '2227.5000', '0.0000', '3192.7500', '35120.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '35120.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3bf7bac44b7249212b73ea4f0b482bfc07fb759026802ad9fb1773ec8b6aaa27', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (697, '2023-11-22 16:36:18', 'SALE/POS2023/11/0475', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '53700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4027.5000', '4027.5000', '0.0000', '5772.7500', '63500.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '63500.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1664d6a1961e5b9a70e68fd7ca6b4fdbfc5d3e5be1a84d8eb273e1cc85e26dbb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (698, '2023-11-22 16:40:42', 'SALE/POS2023/11/0476', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '41100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3082.5000', '3082.5000', '0.0000', '4418.2500', '48600.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '48600.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e212ee5f3ce8ae877e11446562d6999df73c5a38289a967ae0b03bc5ff302ce0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (699, '2023-11-22 17:27:51', 'SALE/POS2023/11/0477', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '13400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1005.0000', '1005.0000', '0.0000', '1440.5000', '15845.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '15845.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b5b05adb08dbb8fab859de52037ff7b7ea7a4608c44f0b7f39ca7014ac5d3a9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (700, '2023-11-22 17:30:02', 'SALE/POS2023/11/0478', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', '4400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e1f8bffad8ac392205a5fdac7d7d555fc71de826efe372dc5e987a0d1d368e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (702, '2023-11-22 18:54:27', 'SALE/POS2023/11/0479', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '63000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6300.0000', '69300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '69300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23a3ca7578a60696ec9628c21faa2cf26ac7d06e507e59a0c5d7c7a24e2bc94b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (708, '2023-11-22 20:43:02', 'SALE/POS2023/11/0480', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '215.0000', '2365.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2365.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '967da016faf3ff51b62de9732dedac03062f52ad36feff0be483891a236b2a34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (709, '2023-11-22 20:51:13', 'SALE/POS2023/11/0481', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '25000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', '27500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '27500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8568ddb755e3981f694b035ec07e9aa7cf5970104233e1624cf94e90fe6d49a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (711, '2023-11-22 21:16:18', 'SALE/POS2023/11/0482', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '38300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3830.0000', '42130.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '42130.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80815c4009003acebb7389f037c71859da9bed743587ecfbf9cd1960756e24e8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (712, '2023-11-22 21:31:29', 'SALE/POS2023/11/0483', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', '2200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e92c34b67b1c8b25604e28ad9999d79bed68e4a6a2db11ca263dd16222f3fb5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (713, '2023-11-22 21:48:12', 'SALE/POS2023/11/0484', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '22800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2280.0000', '25080.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '25080.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36736f4a435540a39dafa577e8d17a9e09d287089879c2d52116335926dc19e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (714, '2023-11-23 13:12:43', 'SALE/POS2023/11/0485', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '101790.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 1, '0.0000', '809.0900', '0.0000', '10260.0000', '112860.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 23, 1, '112860.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cfcd912a52393dd56c1b162b29ee7d89cbe05a95caba53d8eaf8a46c90c07d09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (715, '2023-11-23 13:28:12', 'SALE/POS2023/11/0486', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1260.0000', '1260.0000', '0.0000', '1806.0000', '19866.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '19866.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df45e086eebc85faa353ff92ad0f01319f6a084c125832e0fedc1a5722bcb974', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (716, '2023-11-23 14:32:57', 'SALE/POS2023/11/0487', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96cfa3b2c9b83cd28b66f85831c9ed784690f06a08fb083f03d1f1d46427c907', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (717, '2023-11-23 14:58:21', 'SALE/POS2023/11/0488', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1040.0000', '11440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '11440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '75913d137006af1ad3a85ea300c4a0dfe4eb89c88496c67e49d1c3856d59ce9c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (718, '2023-11-23 15:32:55', 'SALE/POS2023/11/0489', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1040.0000', '11440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '11440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cc1163f28c261af6a4290bbe9253490f929d812203b63c0ffb212a5bbf5cf517', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (721, '2023-11-23 16:07:27', 'SALE/POS2023/11/0490', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '21800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2180.0000', '23980.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '23980.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c0f5f6e449f10370bbff970abc2be489a345115e830cfc0a2dc424b5b0e9030', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (722, '2023-11-23 16:45:44', 'SALE/POS2023/11/0491', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '78000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7800.0000', '85800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '85800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0d2403e3ec63929be34d3019a7027f12b2e33e5706a12ff5f83f4b3202f58e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (727, '2023-11-23 17:59:11', 'SALE/POS2023/11/0492', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', '1650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02ec6be2213a07308361d5d9c527dcb249e77423acce9e167eacb8c091f7bfc2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (728, '2023-11-23 18:06:10', 'SALE/POS2023/11/0493', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11d4becb9f453a7db5d2d440e9dc90d2462c2da1aa25471897bb08c4c59c8e37', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (729, '2023-11-23 18:29:00', 'SALE/POS2023/11/0494', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '30200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3246.5000', '30200.0000', 'completed', 'paid', 0, NULL, 2, 2, '2023-11-23 18:30:50', 8, 1, '35711.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9b0c006164e3d44d4953579e4edd54266d4751a424e2a4d93646d09f8cd9aec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (730, '2023-11-23 18:35:16', 'SALE/POS2023/11/0495', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2480.0000', '27280.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '27280.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02fceeac4d418b95ee9e7f516c2343f91d89820e15e22a13f1f5c72ebeac636e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (732, '2023-11-23 18:59:00', 'SALE/POS2023/11/0496', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '20600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2060.0000', '22660.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '22660.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48012cccec5d4a0e957a30193c929de75d7b2ebad6847ec7b43f0a092d91bf8b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (733, '2023-11-23 19:42:39', 'SALE/POS2023/11/0497', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2790.0000', '30690.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '30690.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c064cb3f107e16aefea9c14034ea8b09ec3b253650926c42da765626f773861', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (735, '2023-11-23 19:51:21', 'SALE/POS2023/11/0499', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', '1650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a267374eb6c27395f7e1610f98e14d82eefa26fe490838be1adbf21c0f20c965', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (736, '2023-11-23 20:04:06', 'SALE/POS2023/11/0500', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '94400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9440.0000', '103840.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '103840.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a59572560fd60b62db5a69a69cc6779865d7715411bb1d46cb4a40c1da547b0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (738, '2023-11-23 22:04:58', 'SALE/POS2023/11/0501', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '36200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3620.0000', '39820.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '39820.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55f2faba7b8c64391bbfacb94c9335da931dd5ca9eee3a4e901294bfb415ffbb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (739, '2023-11-23 22:21:36', 'SALE/POS2023/11/0502', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '890.0000', '9790.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '9790.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '98652ca34bc12ba8f849e158fcea3aa5e956ef78a4468f326c2c87e1b1e445e0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (740, '2023-11-23 22:49:54', 'SALE/POS2023/11/0503', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '46190.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 1, '0.0000', '809.0900', '0.0000', '4700.0000', '51700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '51700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c7078ea04ec0e11d2d7d45b4c2f5ad75bc14d17a306e1641230ec4b51afa5ccf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (741, '2023-11-24 11:28:07', 'SALE/POS2023/11/0504', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '95.0000', '1995.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1995.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1b4ba59a6f03b3804868e74eef2c28c205293acc04c41855d566ba88b94d911', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (743, '2023-11-24 16:43:45', 'SALE/POS2023/11/0505', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1465.0000', '30765.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '30765.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77e288517cae9ee0f32bf629370017e1a8b75b54074a64281704330f265a36e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (745, '2023-11-24 18:37:37', 'SALE/POS2023/11/0506', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '46900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3517.5000', '3517.5000', '0.0000', '2520.8800', '52938.3800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '52938.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1ccff242342730afd83b1d14e0e07c50ea2544331bade44f106222bf420f99c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (748, '2023-11-24 19:53:09', 'SALE/POS2023/11/0507', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '19400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1455.0000', '1455.0000', '0.0000', '1042.7500', '21897.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '21897.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee62bdcd91e52980e91c5bf3302a15550f2fd26178ab598694eb1fa5584d57ed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (749, '2023-11-24 20:00:16', 'SALE/POS2023/11/0508', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1267.5000', '1267.5000', '0.0000', '908.3800', '19075.8800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '19075.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b2e548960ce4ff0e593096ed5d069bfb59c585c6d93dd2ea3e9d619805495560', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (752, '2023-11-24 20:18:45', 'SALE/POS2023/11/0509', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '780.0000', '780.0000', '0.0000', '559.0000', '11739.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '11739.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1f5f4b47247668568623ef6085f2b65c6dae5abd7fe2a736f00e780a13c3cb2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (753, '2023-11-24 20:19:04', 'SALE/POS2023/11/0510', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '36600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2745.0000', '2745.0000', '0.0000', '1967.2500', '41312.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '41312.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4178a6bfd1299e716258a25f4b6e2d0d20f277319fabde98e33ca74b16eb543f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (754, '2023-11-24 20:19:27', 'SALE/POS2023/11/0511', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '107.5000', '2257.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2257.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11f7d5f53e4329ff1c6a107ea0b4b3356442edd5d3bf75a38e45d950b4f4432a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (755, '2023-11-24 20:24:18', 'SALE/POS2023/11/0512', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '215.0000', '4515.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '4515.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca6596c08a739d3a46837b53d2cc89bfec82bcf9d19f696105b91123c9aba6f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (756, '2023-11-24 21:03:17', 'SALE/POS2023/11/0513', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '31700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2377.5000', '2377.5000', '0.0000', '1703.8800', '35781.3800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '35781.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c7d7fecaab9aeb7dbcf785916fca0a1f014c9528b7fa99ab29f28311cab69289', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (758, '2023-11-24 22:24:01', 'SALE/POS2023/11/0514', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '75.0000', '75.0000', '0.0000', '53.7500', '1128.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1128.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4fae3e1b17f52bdae4ec26164ad808eed5592a0db44d05ffacf8ef39e6cc4b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (759, '2023-11-24 22:41:33', 'SALE/POS2023/11/0515', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '38500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2887.5000', '2887.5000', '0.0000', '2069.3800', '43456.8800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '43456.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31ce14131f9534eff30b7cea0715ef477a01f569311a65e8138dc7f80e31e01f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (760, '2023-11-25 11:03:50', 'SALE/POS2023/11/0516', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '52400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3930.0000', '3930.0000', '0.0000', '2816.5000', '59146.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '59146.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59f2d847537a2d98e3c87e1db556e00a63fcd10d37b97980cae3a0e74da4cdcd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (762, '2023-11-25 11:45:13', 'SALE/POS2023/11/0518', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '61800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4635.0000', '4635.0000', '0.0000', '3321.7500', '69756.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '69756.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '115993373ca82346d65bbbe06472c8a7e9da8ab2dafeab57c45906a49b994d7a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (763, '2023-11-25 12:01:04', 'SALE/POS2023/11/0519', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1155.0000', '1155.0000', '0.0000', '827.7500', '17382.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '17382.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e593b5bd178ebdb567dd769edbadb3c7a4ccb0d18edb561084ec1c8ab8925384', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (768, '2023-11-25 15:33:13', 'SALE/POS2023/11/0521', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '65600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4920.0000', '4920.0000', '0.0000', '3526.0000', '74046.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '74046.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd9ce6b8c2ef61a11aad9f45e8f9bfd04bdae63cc0d1a13e9b65b33a16c7f680', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (769, '2023-11-25 16:10:00', 'SALE/POS2023/11/0522', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '44100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3307.5000', '3307.5000', '0.0000', '2397.2500', '47407.5000', 'completed', 'paid', 0, NULL, 2, 2, '2023-11-25 16:11:39', 9, 1, '50342.2500', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e809f3669140b532d69ef489957ef76b597a505b8ef9f24b8677a8ff95f3e24a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (770, '2023-11-25 16:18:39', 'SALE/POS2023/11/0523', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1192.5000', '1192.5000', '0.0000', '854.6300', '17947.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '17947.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9beda376a3371e50f263c273e8ea8327af59fb77440852083941a13d0c354942', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (771, '2023-11-25 19:41:06', 'SALE/POS2023/11/0524', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '815.0000', '17115.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '17115.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6930330f3ea62bb804dafdbbacde9342e178e68b84913d5e3e783753ec3b8b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (773, '2023-11-25 20:26:32', 'SALE/POS2023/11/0525', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '14800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1110.0000', '1110.0000', '0.0000', '795.5000', '16705.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '16705.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86edfbdc700fe901d873af49c6d18333c1d5b86e34791e5999e45405d6d9153d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (776, '2023-11-25 22:36:13', 'SALE/POS2023/11/0527', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '30000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2250.0000', '2250.0000', '0.0000', '1612.5000', '33862.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '33862.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e64e5a7c322d5de1856c71a3e02c2d5a2e591d112a7745e3a2604c4b8c3189a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (777, '2023-11-25 22:38:47', 'SALE/POS2023/11/0528', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '85400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '6405.0000', '6405.0000', '0.0000', '4590.2500', '96395.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '96395.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bdb5f65719de5a0db6ac469cc82023302c69e6f50d7db51520bded05749cc84e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (779, '2023-11-26 13:28:44', 'SALE/POS2023/11/0529', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '47100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3532.5000', '3532.5000', '0.0000', '2531.6300', '53164.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '53164.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85bf6d4eb70bd13204ec4e570c3a7742dee911ef576f11c66952ab1e1c6f230b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (783, '2023-11-26 15:22:40', 'SALE/POS2023/11/0530', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2190.0000', '2190.0000', '0.0000', '1569.5000', '32959.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '32959.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e04bd356f36b92059dff827b52065b5bcfdb52bdbe496af7072981586f77ee45', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (785, '2023-11-26 15:36:02', 'SALE/POS2023/11/0532', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '780.0000', '780.0000', '0.0000', '559.0000', '11739.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '11739.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb82c6ccace9edbed5e3ec96a5d07c839f0129814573c01fc96e8ed9f6a6d890', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (786, '2023-11-26 15:36:57', 'SALE/POS2023/11/0533', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '43600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3270.0000', '3270.0000', '0.0000', '2343.5000', '49213.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '49213.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e75cf9e0a2720cda6f738c9b363306697dc50711cf4daa3a8d0105487cd8737e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (790, '2023-11-26 17:44:12', 'SALE/POS2023/11/0535', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '36590.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2805.0000', '3614.0900', '0.0000', '2010.2500', '42215.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '42215.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14c94738779197248ac36d46aef42f231be1986405189eb6faf00a209458b850', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (795, '2023-11-26 19:38:15', 'SALE/POS2023/11/0537', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2085.0000', '2085.0000', '0.0000', '1494.2500', '31379.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '31379.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3601b8efbd6ca6933fac496cd46d4fec4f1b881b78cc089ed551bc7f49a7326a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (796, '2023-11-26 19:50:42', 'SALE/POS2023/11/0538', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2175.0000', '2175.0000', '0.0000', '1558.7500', '32733.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '32733.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1a61f7db1b2498a9eb98d40fc4ac628a4b46ebb9c8471c43da14bb9b43332f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (797, '2023-11-26 20:05:07', 'SALE/POS2023/11/0539', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '212572.7300', '0.0000', '', '0.0000', '0.0000', '2427.2700', 1, '0.0000', '2427.2700', '0.0000', '10750.0000', '225750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 46, 1, '225750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da8e78f7d2312eefba19109517ab6de570ede90ee3b445e1f3d8b1dd9e7adabd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (798, '2023-11-26 20:06:14', 'SALE/POS2023/11/0540', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '930.0000', '930.0000', '0.0000', '666.5000', '13996.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '13996.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d16c4b37fc6aaa958e3221294c98b341c595d7b0ae1780a15ccc7b4e808dea8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (799, '2023-11-26 20:11:20', 'SALE/POS2023/11/0541', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '26.8800', '564.3800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '564.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50777e2ea7544e429b7f909e2ff235cfbe25ee455bf29e557af54cddcd458925', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (801, '2023-11-26 20:17:14', 'SALE/POS2023/11/0542', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '112.5000', '112.5000', '0.0000', '80.6300', '1693.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1693.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '501a7fa9f584d3b5532e5658aa53e0ce067d700d9ca0cc6cfb1e91431c65eb8f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (802, '2023-11-26 20:47:27', 'SALE/POS2023/11/0543', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '19990.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '1560.0000', '2369.0900', '0.0000', '1118.0000', '23478.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '23478.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f11062c3f951a716ef5ff43414370873556b34ba4d427b4f498f2ebaf2cde9a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (803, '2023-11-26 21:01:20', 'SALE/POS2023/11/0544', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '25300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1897.5000', '1897.5000', '0.0000', '1359.8800', '28557.3800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '28557.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3ab37c54144ceaef24f21ba854cff84e5f8877da3d0defb24a3e030251fb1755', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (805, '2023-11-26 21:10:12', 'SALE/POS2023/11/0546', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '107.5000', '2257.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2257.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f109d37c8a7cd8b65edb5e24cf666d277642a0bd16180ed3596b38e116a63317', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (807, '2023-11-26 21:18:30', 'SALE/POS2023/11/0547', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '70800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '5310.0000', '5310.0000', '0.0000', '3805.5000', '79915.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 23, 1, '79915.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8aa4801021481982c2ebbfaaa3e1514427408c2a9d62978e7c8c6eb4cc31407b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (808, '2023-11-26 21:36:56', 'SALE/POS2023/11/0548', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '630.0000', '630.0000', '0.0000', '451.5000', '9481.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '9481.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ea74a8778f88369fbc2b3775ffed96cace53b07bbc0c73e45cc84037d07f1d1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (811, '2023-11-26 22:02:21', 'SALE/POS2023/11/0550', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '11900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '892.5000', '892.5000', '0.0000', '639.6300', '13432.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '13432.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a23dfa763a525329e4751706c4dd40b3f5733981d649647267c7db6c70006b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (812, '2023-11-26 22:09:53', 'SALE/POS2023/11/0551', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18490.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '1447.5000', '2256.5900', '0.0000', '1037.3800', '21784.8800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '21784.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e730baf002f251866acad6182dd1e04841800314b884e368ebd3d3e73e957f6e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (814, '2023-11-26 22:36:03', 'SALE/POS2023/11/0552', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '31700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2377.5000', '2377.5000', '0.0000', '1703.8800', '35781.3800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '35781.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d33357a55082574255f2ee81d5601edc4c33c3a7715882b0918ae07067b5675', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (815, '2023-11-26 22:41:59', 'SALE/POS2023/11/0553', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '26.8800', '564.3800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '564.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b6fc816259c8e380c040d5458e9021c921e5523308459a6c3a85ac579ca1264', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (816, '2023-11-26 22:44:06', 'SALE/POS2023/11/0554', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '450.0000', '450.0000', '0.0000', '322.5000', '6772.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '6772.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c5c9b3f447fa2519e3f1c820642666845e8e516c3db3128037c6988eebb6a04b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (818, '2023-11-27 13:43:14', 'SALE/POS2023/11/0555', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '187900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '14092.5000', '14092.5000', '0.0000', '10099.6300', '212092.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 40, 1, '212092.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '49cf9c8f2ec29a7a83f9e5b2993a67a6ccf5125e56ab1a90252b76b91a62f908', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (819, '2023-11-27 13:46:02', 'SALE/POS2023/11/0556', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '375.0000', '375.0000', '0.0000', '268.7500', '5643.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '5643.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd25f15c2dcd436695ac8efb8d3a75aae6da9b46f91146ce08e7bb02f49de8e55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (821, '2023-11-27 18:16:26', 'SALE/POS2023/11/0557', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '97300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '7297.5000', '7297.5000', '0.0000', '5229.8800', '109827.3800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 19, 1, '109827.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e57acd6ffef40c02ed48a62ba4481c0e4b9613e1bb75ee0e43d38aca3581cf35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (822, '2023-11-27 18:29:50', 'SALE/POS2023/11/0558', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2040.0000', '2040.0000', '0.0000', '1462.0000', '30702.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '30702.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a99c227f114958306356ce3b6679e61efe54c4b3ee1edff7dc04554e0e766d24', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (824, '2023-11-27 18:58:46', 'SALE/POS2023/11/0559', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '89790.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '6795.0000', '7604.0900', '0.0000', '4869.7500', '102264.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 17, 1, '102264.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e509199c33a480d72c797394b502936eea2ea58421de04a35ee0b14a4bd6d600', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (826, '2023-11-27 20:47:53', 'SALE/POS2023/11/0560', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '14500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1087.5000', '1087.5000', '0.0000', '779.3800', '16366.8800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '16366.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a93f9fa110e90578319522bf5a4dac7c41e64437df5115f6d0ee0d73eda0eebd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (830, '2023-11-28 13:59:46', 'SALE/POS2023/11/0562', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '630.0000', '630.0000', '0.0000', '451.5000', '9481.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '9481.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eaaf6a80042441e5c7adcf99ddeba49d914ea9d3de4f3a7c9fa403e529a202bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (831, '2023-11-28 14:06:11', 'SALE/POS2023/11/0563', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '14400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1080.0000', '1080.0000', '0.0000', '774.0000', '16254.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '16254.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c668f66977e32373cf93b1c9cc9a8ff5059e9bd47e0051e2789f9068c559604', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (832, '2023-11-28 14:37:20', 'SALE/POS2023/11/0564', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2190.0000', '2190.0000', '0.0000', '1569.5000', '32959.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '32959.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df9dbe07f97622f283d35abd18350ec643ffc51e5b5a6688f16bf8faefff93ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (833, '2023-11-28 14:42:12', 'SALE/POS2023/11/0565', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '30300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2272.5000', '2272.5000', '0.0000', '1628.6300', '34201.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '34201.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce4055cce4274bb0a7c0f7422e549863f74d7053d00e7b7db3a4e0e411cae3a8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (835, '2023-11-28 16:35:06', 'SALE/POS2023/11/0566', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '315.0000', '315.0000', '0.0000', '225.7500', '4740.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4740.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '72d587e281224840d8e0bcf86669e74f898cebd8fd070569b33e2d13d3473439', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (837, '2023-11-28 18:18:43', 'SALE/POS2023/11/0567', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '375.0000', '375.0000', '0.0000', '268.7500', '5643.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '5643.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3d1a71fd02f2e77ec9499cf7bb18f4d03e1e7b863c3787c8694515e09458ffd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (839, '2023-11-28 18:30:13', 'SALE/POS2023/11/0568', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '13400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1005.0000', '1005.0000', '0.0000', '720.2500', '15125.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '15125.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d07a0179bc9c50f5e79c3e57ca75e65f820790dca7f583f52380eae61a4fd34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (840, '2023-11-28 19:15:04', 'SALE/POS2023/11/0569', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '450.0000', '450.0000', '0.0000', '322.5000', '6772.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '6772.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9957c0f199130a8809e14f94d76efe333f53bf76d4ff0b7ef475a42ac519fc2e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (841, '2023-11-28 20:00:34', 'SALE/POS2023/11/0570', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '60990.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '4635.0000', '5444.0900', '0.0000', '3321.7500', '69756.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '69756.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c7d66c7135300dd2f83754c62f9be5087a6eb39dbc3ca20330d436e42979f8b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (842, '2023-11-28 20:01:03', 'SALE/POS2023/11/0571', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '55000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4125.0000', '4125.0000', '0.0000', '2956.2500', '62081.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '62081.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93dc43904987540b9b49761eec6c46f9f80fbf90e23529954e2ad96c3fc6a41c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (844, '2023-11-28 22:33:41', 'SALE/POS2023/11/0572', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '27800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2085.0000', '2085.0000', '0.0000', '1494.2500', '31379.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '31379.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0eaaa7dcbffacd0d115bbc471163cd41f18d74b3e55a9899e6862efa0822c84b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (847, '2023-11-29 14:21:27', 'SALE/POS2023/11/0574', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1845.0000', '1845.0000', '0.0000', '1322.2500', '27767.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '27767.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '08db57dfb0f12ad9872752509cb79570892b6330bd5e3cfe284355cfc8244314', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (849, '2023-11-29 14:30:36', 'SALE/POS2023/11/0575', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '20800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1560.0000', '1560.0000', '0.0000', '1118.0000', '23478.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '23478.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9e4d9cf3fe1d5ab670b26bca68b1a5f2eb6439695576a9f58ecaec4f03a8744', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (850, '2023-11-29 14:34:11', 'SALE/POS2023/11/0576', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '215.0000', '4515.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4515.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f8b6c33335e293e6a2119990a14c20103c6896a79cda4c9a6c977aa7046f7c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (853, '2023-11-29 18:20:35', 'SALE/POS2023/11/0577', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '202.5000', '202.5000', '0.0000', '145.1300', '3047.6300', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '3047.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '395d61cd791111e1cb9f144e866bab9ba26c226a8a3ce50d636bf118984d2626', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (854, '2023-11-29 18:51:44', 'SALE/POS2023/11/0578', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '45290.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '3457.5000', '4266.5900', '0.0000', '2477.8800', '52035.3800', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 9, 1, '52035.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cec755b00d8b6649013e36a9846a8ceff038fe654896773dcc4d33a8da713927', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (856, '2023-11-30 12:42:10', 'SALE/POS2023/11/0579', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '26700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2002.5000', '2002.5000', '0.0000', '1435.1300', '30137.6300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '30137.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0c87cc22fbcc13830b27b9133f1daa379d861fdab06553305007158fc41cb46', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (857, '2023-11-30 13:29:25', 'SALE/POS2023/11/0580', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '750.0000', '750.0000', '0.0000', '537.5000', '11287.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '11287.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ec0e1e152f0a189237c5efc57e02f57018f07ad7d5af2b51fe65b8e3da8d7c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (860, '2023-11-30 19:08:03', 'SALE/POS2023/11/0581', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '450.0000', '450.0000', '0.0000', '322.5000', '6772.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '6772.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8f2dfb79746ab358cf275083e6e0c62cc8a026e7ceb4366ae002b674b3cee34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (863, '2023-11-30 19:39:19', 'SALE/POS2023/11/0582', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '21300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1597.5000', '1597.5000', '0.0000', '1144.8800', '24042.3800', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '24042.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0696d2678da98a1cc1d2f14164eab93f5f7995bc07e7dd7d82bbe0cd1be89711', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (865, '2023-11-30 20:34:00', 'SALE/POS2023/11/0583', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '161.2500', '3225.0000', 'completed', 'paid', 0, NULL, 3, 3, '2023-11-30 20:50:49', 2, 1, '3225.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9fc9102f7ff41454eb4b8789c789dff1016f4d396b5a49ea3e82eb013695d9da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (866, '2023-11-30 20:35:13', 'SALE/POS2023/11/0584', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1267.5000', '1267.5000', '0.0000', '908.3800', '19075.8800', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '19075.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c6b1b799af3234e71c6adb5fd0bc54f02748b9d091a02a30695da156946be20', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (867, '2023-11-30 20:36:22', 'SALE/POS2023/11/0585', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '17400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1305.0000', '1305.0000', '0.0000', '935.2500', '19640.2500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '19640.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3981dc0c7398e87953a2a8174448c05cc6cd16d6d7f2bd38f760f2ed1baf6dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (868, '2023-11-30 20:38:18', 'SALE/POS2023/11/0586', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '38500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2887.5000', '2887.5000', '0.0000', '2069.3800', '43456.8800', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 7, 1, '43456.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6b3e6f56fdf6c284f16f0645c387597fde410b753f6c56526d3d5c6dd3f1595', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (869, '2023-11-30 20:39:13', 'SALE/POS2023/11/0587', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '855.0000', '855.0000', '0.0000', '612.7500', '12867.7500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '12867.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01600f2fe1e1440a70e242950b62520de111e45c0c158a918e579cedda959496', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (870, '2023-11-30 20:41:43', 'SALE/POS2023/11/0588', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '855.0000', '855.0000', '0.0000', '612.7500', '12867.7500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '12867.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6e034345bcada2eaccad4b0ae862d49ed664a47a8b6a0afe8e82e4ca784a1157', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (872, '2023-11-30 21:16:44', 'SALE/POS2023/11/0590', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '705.0000', '705.0000', '0.0000', '505.2500', '10610.2500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '10610.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4abc12fd7a5ad0a20683bddf483e6c9309d686bebffe25ad8f0cec47ea8bda7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (873, '2023-11-30 21:21:03', 'SALE/POS2023/11/0591', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24990.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '1935.0000', '2744.0900', '0.0000', '1386.7500', '29121.7500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '29121.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '780f67fed115484a1d318dd651123b815aabeebc75e3ef09075f9fda9adea002', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (874, '2023-12-01 12:11:47', 'SALE/POS2023/12/0592', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1815.0000', '1815.0000', '0.0000', '1300.7500', '27315.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '27315.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9eb8e0bb73845aebf0f230d37dfc17b02f5d45fb058c6ede03efcfa1be2b8ab9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (876, '2023-12-01 14:46:18', 'SALE/POS2023/12/0593', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '31800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2385.0000', '2385.0000', '0.0000', '1709.2500', '35894.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '35894.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d11665cb2cc8ce1d528851a8deb6ff333e3d3a3944b3ffb91905280803b43eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (877, '2023-12-01 14:46:56', 'SALE/POS2023/12/0594', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '16800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1260.0000', '1260.0000', '0.0000', '903.0000', '18963.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '18963.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0e63d8b30e13224ee8f45f492f10a58b10b721a35adb6d83403d09e172cec7c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (879, '2023-12-01 15:31:12', 'SALE/POS2023/12/0595', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '33700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2527.5000', '2527.5000', '0.0000', '1811.3800', '38038.8800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '38038.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd8ce272db24ae9df63f3ad3bff5ac4ff63a4becf7b5936bf726f7b7cd29ed255', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (880, '2023-12-01 17:38:32', 'SALE/POS2023/12/0596', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '930.0000', '930.0000', '0.0000', '666.5000', '13996.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '13996.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00f0b9e956964b866d634887953b73bbbe4d053c0b16cac73c4d1eb022915cf1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (882, '2023-12-01 18:36:39', 'SALE/POS2023/12/0597', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '30300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2272.5000', '2272.5000', '0.0000', '1628.6300', '34201.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '34201.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'de83b96772ed0bfaed726b36f6ec7b52b94ac7e71bd769ee23687b47de263533', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (884, '2023-12-01 19:40:54', 'SALE/POS2023/12/0598', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '69100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '5182.5000', '5182.5000', '0.0000', '3714.1300', '77996.6300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '77996.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e99f4326d3755f41443fc688560e57664293b3acc0d611a6d875990022efa102', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (885, '2023-12-01 21:10:52', 'SALE/POS2023/12/0599', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '59400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4455.0000', '4455.0000', '0.0000', '3192.7500', '67047.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '67047.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b5fb8d10271f0267c43f2f11fc0e692a4cf9d2881702f8b5a3953655ca08bca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (886, '2023-12-01 21:13:27', 'SALE/POS2023/12/0600', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '70000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '5250.0000', '5250.0000', '0.0000', '3762.5000', '79012.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '79012.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e3b0d97006a85bd4053c12b3feae0efb593905126da429c7dfe1798ed2cb4dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (887, '2023-12-01 21:28:34', 'SALE/POS2023/12/0601', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '85500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '6412.5000', '6412.5000', '0.0000', '4595.6300', '96508.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '96508.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c06e916b443c8210ded89268415b0822d2801ca7ed6acb08827030c7403ebff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (888, '2023-12-01 21:38:27', 'SALE/POS2023/12/0602', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '66000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4950.0000', '4950.0000', '0.0000', '3547.5000', '74497.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '74497.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7858577a2f25ae173acffe345d01af45bf9ad187fb552957770ec8efc28dea19', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (889, '2023-12-01 21:47:25', 'SALE/POS2023/12/0603', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '215.0000', '4515.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '4515.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '653c50cacbcb2fadd8078412901adec905853e3f90248f8cc09becffcd8e4360', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (890, '2023-12-01 22:20:19', 'SALE/POS2023/12/0604', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '215.0000', '4515.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '4515.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '926cea10e94e775f91e6d37367737c36578e1b4a5ea92dcaacb1f679f662bf01', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (892, '2023-12-02 12:50:31', 'SALE/POS2023/12/0605', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '49100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3682.5000', '3682.5000', '0.0000', '2639.1300', '55421.6300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '55421.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16bdbacaccc98e3728680a8ed59eb04a525a92088820e78611ebe620f68f10e9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (893, '2023-12-02 17:24:41', 'SALE/POS2023/12/0606', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '48700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3652.5000', '3652.5000', '0.0000', '2617.6300', '54970.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '54970.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8911a821348568dc5149c9d2586568c1402f8c800886e894b173e76e631b1bb2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (895, '2023-12-02 18:05:35', 'SALE/POS2023/12/0607', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '46400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3480.0000', '3480.0000', '0.0000', '2494.0000', '52374.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '52374.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0aa49ed3b004adda324b8d7aa43c268f47c9c4648ca0a77d7e2b98475cec526e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (898, '2023-12-02 19:02:55', 'SALE/POS2023/12/0609', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '43400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3255.0000', '3255.0000', '0.0000', '2332.7500', '48987.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '48987.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3a090177493c4c1bb0db6628ce1a3ce1dc16c9281ec5fc26bdb6befa9e40b39', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (900, '2023-12-02 19:52:08', 'SALE/POS2023/12/0610', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '705.0000', '705.0000', '0.0000', '505.2500', '10610.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '10610.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '784ef656d78abe0da4dde976c7d35970dc181cb742f2b9ace12eeae1e25ac2f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (901, '2023-12-02 20:26:35', 'SALE/POS2023/12/0611', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '21990.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '1710.0000', '2519.0900', '0.0000', '1225.5000', '25735.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '25735.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4fad4eb15e35d516ac5fbba1bad368a3fa70fae104041d92faef141e27beb6f6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (902, '2023-12-02 21:12:38', 'SALE/POS2023/12/0612', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '32200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2415.0000', '2415.0000', '0.0000', '1730.7500', '36345.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '36345.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13e4202e57d02dc5ea597a12396c57d803d0e0a6fa530c35b22b53bf49d0ab98', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (904, '2023-12-02 22:38:58', 'SALE/POS2023/12/0613', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '76000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '5700.0000', '5700.0000', '0.0000', '4085.0000', '85785.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 23, 1, '85785.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2ddfcd8e349893ccdbf25692b6975ad92026d71494bf41464a21f125567ca39', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (905, '2023-12-02 22:45:07', 'SALE/POS2023/12/0614', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1822.5000', '1822.5000', '0.0000', '1306.1300', '27428.6300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '27428.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6017b004bfbd015cad1298c16bfb1438644c3bfa85c72196423a630fd42cbdb8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (908, '2023-12-03 12:28:06', 'SALE/POS2023/12/0615', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '20800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1560.0000', '1560.0000', '0.0000', '1118.0000', '23478.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '23478.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d4861c66c8f28feef4c0730534528b06dfa59b772cb4203e6a0809118312f7a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (911, '2023-12-03 13:20:37', 'SALE/POS2023/12/0616', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '37200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2790.0000', '2790.0000', '0.0000', '1999.5000', '41989.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '41989.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '871e6398ae20d9090b3e6bcf28e73ac6aea56cb214c2b37f752584ca0e9a001f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (912, '2023-12-03 13:28:09', 'SALE/POS2023/12/0617', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '75800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '5685.0000', '5685.0000', '0.0000', '4074.2500', '85559.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 16, 1, '85559.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc4a4d5004d2a672d50634b12f9b768d3c87f90936cbdd9d2ffce7a7f6c64cda', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (913, '2023-12-03 13:53:07', 'SALE/POS2023/12/0618', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '64500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4837.5000', '4837.5000', '0.0000', '3466.8800', '72804.3800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '72804.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6a9f4fa314cfb8f7ef8cafca7a0f2d9d1fee18412781d4428385dcede577f43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (914, '2023-12-03 14:58:33', 'SALE/POS2023/12/0619', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2190.0000', '2190.0000', '0.0000', '1569.5000', '32959.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '32959.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '751f11489b1dc4347e0d1dd6127887e9e0d593b501d25747c337943147ee50de', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (916, '2023-12-03 16:41:35', 'SALE/POS2023/12/0620', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '41700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3127.5000', '3127.5000', '0.0000', '2241.3800', '47068.8800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '47068.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '08f3bc343e51751d0004820a65f7f43d498963bdd7c15b4d3bc44136be3bf231', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (918, '2023-12-03 18:03:49', 'SALE/POS2023/12/0621', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '161.2500', '3386.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '3386.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '913ba4db56afcf2aa2c5c49c3993c7dd9e13380bf1b7873b083c4c56da032d05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (919, '2023-12-03 18:05:17', 'SALE/POS2023/12/0622', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '262.5000', '262.5000', '0.0000', '188.1300', '3950.6300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3950.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4cea61267f0235977cf76e54bc9e696e938eb998b6ee76c49d51d50b3581fe3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (924, '2023-12-03 19:51:52', 'SALE/POS2023/12/0623', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '44900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3367.5000', '3367.5000', '0.0000', '2413.3800', '50680.8800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '50680.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'afb05ca632958233b66e1f5dcbe0f0e475a48b2b1abe08a9bca1669ac483d355', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (925, '2023-12-03 20:10:20', 'SALE/POS2023/12/0624', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '26.8800', '564.3800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '564.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a35299ecffdd31e4905c946b0ff2c8e085a96a82c2e875d5b7b8e8b40e89b69', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (926, '2023-12-03 20:13:20', 'SALE/POS2023/12/0625', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '70700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '5302.5000', '5302.5000', '0.0000', '3800.1300', '79802.6300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '79802.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '22e2c1577a4d8907a490c83d2261e8604c26d0b5177e42926359ec44db327f3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (927, '2023-12-03 20:14:26', 'SALE/POS2023/12/0626', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '7500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '562.5000', '562.5000', '0.0000', '403.1300', '8465.6300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '8465.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '336cd46cf71331a132cff097808d201e7cac0cea2f79cdb4d2c163990509ba6e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (930, '2023-12-03 20:53:09', 'SALE/POS2023/12/0627', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '630.0000', '630.0000', '0.0000', '451.5000', '9481.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '9481.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '573b06ac699d4b682a6f8352c89d5d6054f1b5603a72eb4b537327e3f3424379', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (931, '2023-12-03 20:58:09', 'SALE/POS2023/12/0628', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '14800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1110.0000', '1110.0000', '0.0000', '795.5000', '16705.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '16705.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '556e20fc4bb59f44578c3c4cf2520bd5cea016c3e4c2b6a361fb65780315a4cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (932, '2023-12-03 21:11:34', 'SALE/POS2023/12/0629', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '86300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '6472.5000', '6472.5000', '0.0000', '4638.6300', '97411.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 16, 1, '97411.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '195e1aee2cdedc4e7cf6d42d3cf019d49c276007574c0f9c4530e8ae951a3bd5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (933, '2023-12-03 21:29:12', 'SALE/POS2023/12/0630', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '13400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1005.0000', '1005.0000', '0.0000', '720.2500', '15125.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '15125.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c57ef6bcc517a7d73da03e17bcdb9e0b9925e9e5d7a5502ec79b9bcf5d18ad3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (934, '2023-12-03 21:39:35', 'SALE/POS2023/12/0631', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '18800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1410.0000', '1410.0000', '0.0000', '1010.5000', '21220.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '21220.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb9b16d29b5aebac253c2fdb1e29778228a2b270a92b168b8b252ffdfd2d60f4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (935, '2023-12-03 21:44:17', 'SALE/POS2023/12/0632', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '38800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2910.0000', '2910.0000', '0.0000', '2085.5000', '43795.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '43795.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e24aee05f4e55641e590a10925fc00bdaa7192b315bc3b4e4f60025296afaaf2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (936, '2023-12-03 21:59:23', 'SALE/POS2023/12/0633', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '139200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '10440.0000', '10440.0000', '0.0000', '7482.0000', '157122.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '157122.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af907cb7c6717c9dfcab0e0387f668d8011f44b8ee0933cd15014498871dca35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (938, '2023-12-03 22:37:09', 'SALE/POS2023/12/0634', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '35000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2625.0000', '2625.0000', '0.0000', '1881.2500', '39506.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '39506.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e70c62cca25ba87bedf55d0104f4862ff071e0c78099af39726eeca386335346', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (939, '2023-12-04 11:47:25', 'SALE/POS2023/12/0635', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '32100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2407.5000', '2407.5000', '0.0000', '1725.3800', '36232.8800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '36232.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c3020b169e7626b31e382ec14b6ab912e95e6131eddda3a9b771ea3150a5a83', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (941, '2023-12-04 12:48:31', 'SALE/POS2023/12/0636', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '48600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3645.0000', '3645.0000', '0.0000', '2612.2500', '54857.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '54857.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '012abf2c873faba3d289c39556b131c43050d219b101c77e68b85e18f141a816', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (943, '2023-12-04 14:31:07', 'SALE/POS2023/12/0637', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '37200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2790.0000', '2790.0000', '0.0000', '1999.5000', '41989.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '41989.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd73f098eb8b0f3bf5933ed61d3339840ca3149f9a9248cd8b1f1317005271ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (945, '2023-12-04 16:52:25', 'SALE/POS2023/12/0638', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '5500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '412.5000', '412.5000', '0.0000', '295.6300', '6208.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '6208.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a7a79ca94152d902837167eeba3e09ce94b25e8db8f62a7c2ace5ee5d9feb5e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (947, '2023-12-04 18:07:33', 'SALE/POS2023/12/0639', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '187.5000', '187.5000', '0.0000', '134.3800', '2821.8800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2821.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'abf0d1ac2952fc4d0059681ad26895bc686c4f2750850ab391680cb808672892', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (949, '2023-12-04 18:53:32', 'SALE/POS2023/12/0640', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2242.5000', '2242.5000', '0.0000', '1607.1300', '33749.6300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '33749.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c4a14098c7a611ea24afdc7cac7002078947ea9726d93c868b9a6727d49df1c2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (951, '2023-12-04 19:24:15', 'SALE/POS2023/12/0641', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '13900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1042.5000', '1042.5000', '0.0000', '747.1300', '15689.6300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '15689.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8ac9857c8b7a94472f86f34a77e0bb61e8870c5671f27cc5d53370e6db00e38e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (954, '2023-12-04 20:27:38', 'SALE/POS2023/12/0642', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '30590.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '2355.0000', '3164.0900', '0.0000', '1687.7500', '35442.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '35442.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '113a9da738f0e0824b84cd1baaab83a90bab65b9638f0b7a85e357d05d8079f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (955, '2023-12-04 20:30:31', 'SALE/POS2023/12/0643', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '12400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '930.0000', '930.0000', '0.0000', '666.5000', '13996.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '13996.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60fa6d2c273182c8a72250eaff5e3fc22358330540f89747a5e0af246f245019', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (956, '2023-12-04 20:33:17', 'SALE/POS2023/12/0644', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '5500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '412.5000', '412.5000', '0.0000', '295.6300', '6208.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '6208.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '90d1ef04b18ebe270046ae7a65578ca94ccce47e660ca3b67bd816be9aeaa811', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (957, '2023-12-04 21:56:41', 'SALE/POS2023/12/0645', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '215.0000', '4515.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4515.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e0ab25834ebe28500088b24c39fc4991877f71ad0f55ab0a7056eb1a76e3e1f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (960, '2023-12-05 13:21:01', 'SALE/POS2023/12/0646', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '136000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '10200.0000', '10200.0000', '0.0000', '7310.0000', '153510.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 25, 1, '153510.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e97512b868b0bed1a5b4fe6b62e70dd3214d852c57a7ec04fa18243fafaa957b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (961, '2023-12-05 13:42:53', 'SALE/POS2023/12/0647', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '41790.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '3195.0000', '4004.0900', '0.0000', '2289.7500', '48084.7500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '48084.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '261c5559f57c0b7ed2567c3d597a6427d1038818c4f3b7e3bd0c5d8e8af22785', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (962, '2023-12-05 15:37:49', 'SALE/POS2023/12/0648', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '33200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2490.0000', '2490.0000', '0.0000', '1784.5000', '37474.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '37474.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '47f470a44f6e91ce15777c664bace6e39a2c62c686b6ead39d7c802385ba7247', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (964, '2023-12-05 18:49:20', 'SALE/POS2023/12/0649', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '44300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3322.5000', '3322.5000', '0.0000', '2381.1300', '50003.6300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '50003.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1a9fdfed8578783508d8ca530fe29146bb7f13be4e5ffff2c8bb6628926e4d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (965, '2023-12-05 18:50:30', 'SALE/POS2023/12/0650', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '667.5000', '667.5000', '0.0000', '478.3800', '10045.8800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '10045.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af19f59c49076893becd73ca0605c39c557de8cb726ca08b1f71412cec69898d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (969, '2023-12-05 21:15:00', 'SALE/POS2023/12/0651', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '322.5000', '322.5000', '0.0000', '231.1300', '4853.6300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4853.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c7ad0275a1fd64ca145177792a97f744e416a9b3537aff0c81843347bf1add7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (970, '2023-12-05 21:51:32', 'SALE/POS2023/12/0652', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '26.8800', '564.3800', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '564.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b9737888fedb2f4278b2d8aaef90e20e5e3d9a52f18a8fd085129ed6e7bc230', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (972, '2023-12-05 22:47:16', 'SALE/POS2023/12/0653', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '11900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '892.5000', '892.5000', '0.0000', '639.6300', '13432.1300', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '13432.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e46aaa32b6c22765820934d9c5d89009ab3200f8b7c8f516f3ed7414963fe516', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (974, '2023-12-05 22:58:46', 'SALE/POS2023/12/0655', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '645.0000', '645.0000', '0.0000', '462.2500', '9707.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '9707.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '44d1ac4bb860cbeed27faf521092da7c35cdeaea1a16587b8824b37e2a0d77ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (975, '2023-12-05 22:59:52', 'SALE/POS2023/12/0656', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '107.5000', '2257.5000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2257.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b0305393dba46a3b025ad8ad3742cd666f4498da149edd72e4ff5827e7a56363', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (977, '2023-12-06 13:30:16', 'SALE/POS2023/12/0657', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '34200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2565.0000', '2565.0000', '0.0000', '1838.2500', '38603.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '38603.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '242d1988741eb7e9c98ed93a18ed4a33d371d538f585c232fea6b44c0e4a2550', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (978, '2023-12-06 13:49:38', 'SALE/POS2023/12/0658', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '19800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1485.0000', '1485.0000', '0.0000', '1064.2500', '22349.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '22349.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f1c223911731b657d5ad46f8721a3d43552b88e2c100606cb9ad7fcfe3bedf8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (980, '2023-12-06 16:44:03', 'SALE/POS2023/12/0659', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '780.0000', '780.0000', '0.0000', '559.0000', '11739.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '11739.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b7da56eaaf37d6857b21d41982ac62a08012a2dd0c9e5dd840a4bfa573d8e59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (982, '2023-12-06 18:32:45', 'SALE/POS2023/12/0660', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8590.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '705.0000', '1514.0900', '0.0000', '505.2500', '10610.2500', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '10610.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '75a17ce6c1d62112d5db5cb47544d57f37b3981936da90dbea2e8472957bc612', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (987, '2023-12-06 23:18:39', 'SALE/POS2023/12/0663', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '28100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2107.5000', '2107.5000', '0.0000', '1510.3800', '31717.8800', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '31717.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20f7c679a51fe423266857c40280c5c1f2a91738f35aa20a4848c28eddebedb1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (989, '2023-12-07 12:42:04', 'SALE/POS2023/12/0664', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '142790.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '10770.0000', '11579.0900', '0.0000', '7718.5000', '162088.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 31, 1, '162088.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '852925c29c840c9fa3fd10de52c4553290282cd23818be826948c0426c61bff1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (990, '2023-12-07 12:46:04', 'SALE/POS2023/12/0665', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '64400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4830.0000', '4830.0000', '0.0000', '3461.5000', '72691.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 9, 1, '72691.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3814bd06adcd3206a072966a9fdabfb320d8f4655a0d6e1cf03abac807dcd2da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (991, '2023-12-07 13:07:18', 'SALE/POS2023/12/0666', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '103800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '7785.0000', '7785.0000', '0.0000', '5579.2500', '117164.2500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 24, 1, '117164.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2ec575b0de17fd18f683569a13a85fb3f845e4c5082d37739fd3c5756b10a90', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (992, '2023-12-07 13:08:45', 'SALE/POS2023/12/0667', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '225.0000', '225.0000', '0.0000', '161.2500', '3386.2500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '3386.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '47bc2b6ca5bf641ee7d0b8aeaa134ad76e379739ce6ce94e9e7905d9c847c155', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (994, '2023-12-07 17:25:19', 'SALE/POS2023/12/0668', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15900.0000', '0.0000', '1793.58', '1793.5800', '1793.5800', '0.0000', 4, '1057.9815', '1057.9815', '0.0000', '758.2200', '15922.6200', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '15922.6200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd8761c651e9b95d30e3359355805fa3b9b6f8b9593fc5c29ff606fab34de027', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (998, '2023-12-07 20:33:16', 'SALE/POS2023/12/0670', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '48900.0000', '0.0000', '5519', '5519.0000', '5519.0000', '0.0000', 4, '3253.5750', '3253.5750', '0.0000', '2331.7300', '48966.3100', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 7, 1, '48966.3100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '17b5ea1126a8f9d923b07a570a72ab09d62a989e1300382f82349c33be1a2d62', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (999, '2023-12-07 20:34:55', 'SALE/POS2023/12/0671', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '22000.0000', '0.0000', '2483', '2483.0000', '2483.0000', '0.0000', 4, '1463.7750', '1463.7750', '0.0000', '1049.0400', '22029.8200', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 3, 1, '22029.8200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e3194a2dcce8bc09511907cb1e7440a2f56a7ce64845d3a1237321018438722f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1001, '2023-12-07 21:16:44', 'SALE/POS2023/12/0672', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24500.0000', '0.0000', '2765', '2765.0000', '2765.0000', '0.0000', 4, '1630.1250', '1630.1250', '0.0000', '1168.2600', '24533.3900', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 6, 1, '24533.3900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2ec20fa979ede8f1e8b1de8a014419484357f2f77f946da89eb2fb77261c0cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1003, '2023-12-07 21:24:26', 'SALE/POS2023/12/0673', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '75.0000', '75.0000', '0.0000', '53.7500', '1128.7500', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 2, 1, '1128.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5dec8b7db31a82fe82351eff2955994cb703b3484beef9af4f1d335830f9dc0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1005, '2023-12-07 21:46:47', 'SALE/POS2023/12/0674', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '44900.0000', '0.0000', '5068', '5068.0000', '5068.0000', '0.0000', 4, '2987.4000', '2987.4000', '0.0000', '2140.9700', '44960.3700', 'completed', 'paid', 0, NULL, 1, NULL, NULL, 5, 1, '44960.3700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02e95099344cf60191c70f780c8d2082f5b7daccc9a11ff95f679bdfababfbe1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1007, '2023-12-07 22:20:48', 'SALE/POS2023/12/0676', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '14500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1087.5000', '1087.5000', '0.0000', '779.3800', '16366.8800', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '16366.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1545ed68329c6f5e0967a8c63589c9d8d7160b7809e38dfd140e51a3a427511', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1017, '2023-12-08 14:19:49', 'SALE/POS2023/12/0681', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '31200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2340.0000', '2340.0000', '0.0000', '1677.0000', '35217.0000', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 7, 1, '35217.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0d13f62dddecac6de47cdfccfd145dec9222a2f27fc52315db37224b786c091', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1018, '2023-12-08 20:27:18', 'SALE2023/12/0332', 7, 'Table 4', 3, 'kunakornthairestaurant', 1, '', '', '62600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4695.0000', '4695.0000', '0.0000', '3364.7500', '70659.7500', 'completed', 'paid', 0, NULL, 9, NULL, NULL, 8, 0, '70659.7500', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '1896d2d46657fbf9191292ed0eab6fa99f037b703590093339e383b62d7cb49a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1019, '2023-12-08 20:36:08', 'SALE/POS2023/12/0682', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '780.0000', '780.0000', '0.0000', '559.0000', '11739.0000', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 2, 1, '11739.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '17d67d1d3f00a0cca2552ea41496e460530385ac582e67ee114ea3c8e4835ebf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1020, '2023-12-08 20:58:29', 'SALE2023/12/0333', 33, 'Table 13', 3, 'kunakornthairestaurant', 1, '', '', '35300.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '2647.5000', '2647.5000', '0.0000', '1897.3800', '39844.8800', 'completed', 'paid', 0, NULL, 17, 31, '2023-12-08 22:04:46', 8, 0, '39844.8800', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '83cdecd66aaed8a53a080c6f265e13d2f86704105090a71618bbebfbbdbfce56', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1022, '2023-12-08 21:06:53', 'SALE/POS2023/12/0683', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '31700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2377.5000', '2377.5000', '0.0000', '1703.8800', '35781.3800', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 6, 1, '35781.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c44db56f225c5a6cc04f11a0ac50fd832503ec4e4ab7874d56edc03921745f16', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1024, '2023-12-08 21:59:32', 'SALE2023/12/0335', 36, 'Table 17', 3, 'kunakornthairestaurant', 1, '', '', '145700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '10927.5000', '10927.5000', '0.0000', '7831.3800', '164458.8800', 'completed', 'paid', 0, NULL, 9, 9, '2023-12-08 23:10:47', 29, 0, '164458.8800', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0b3063eb3064f6ed969c20ca1b80b3c6b7e1a945fb4082b6878e0ed4f1682e0c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1026, '2023-12-08 22:35:27', 'SALE2023/12/0337', 27, 'Table 7', 3, 'kunakornthairestaurant', 1, '', '', '11400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '855.0000', '855.0000', '0.0000', '612.7500', '12867.7500', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 3, 0, '12867.7500', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '0c7da527c184b2f4beedb3604b31a07b83f03e6ffb196728c9fe4f56be74b2e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1027, '2023-12-08 23:05:32', 'SALE/POS2023/12/0685', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '26300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1972.5000', '1972.5000', '0.0000', '1413.6300', '29686.1300', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 9, 1, '29686.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c968212d8f3a7423e3240b7f80fa60649018e1966b127190c6271ab1730decd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1028, '2023-12-08 23:18:52', 'SALE/POS2023/12/0686', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '7000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '525.0000', '525.0000', '0.0000', '376.2500', '7901.2500', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 2, 1, '7901.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b855cf56c7764e9b1ac197a208bdaf141c7defe82e5f87b773f1bc9858d7004c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1029, '2023-12-09 12:07:09', 'SALE2023/12/0338', 5, 'Table 2', 3, 'kunakornthairestaurant', 1, '', '', '1000.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '75.0000', '75.0000', '0.0000', '53.7500', '1128.7500', 'completed', 'paid', 0, NULL, 11, 11, '2023-12-09 12:07:27', 2, 0, '1128.7500', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '40ccbe18d1fe16507a325042755bdbc3943224fa816cccc46dc1a0093a86a09b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1030, '2023-12-09 13:41:29', 'SALE2023/12/0339', 4, 'Table 1', 3, 'kunakornthairestaurant', 1, '', '', '29390.9100', '0.0000', NULL, '0.0000', '0.0000', '809.0900', 4, '2265.0000', '3074.0900', '0.0000', '1623.2500', '34088.2500', 'completed', 'paid', 0, NULL, 18, 18, '2023-12-09 14:11:50', 6, 0, '34088.2500', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'b2ef38c93bc0e01a34ca347f565570bf5e928b91e5b548faebcc5010707206a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1032, '2023-12-09 14:17:55', 'SALE2023/12/0340', 4, 'Table 1', 3, 'kunakornthairestaurant', 1, '', '', '34700.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '2602.5000', '2602.5000', '0.0000', '1865.1300', '39167.6300', 'completed', 'paid', 0, NULL, 11, 11, '2023-12-09 14:36:11', 12, 0, '39167.6300', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '6e8c07c7273fd40472639ed8445d7b68dcfd9759f88a560a09326e08b86829d3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1033, '2023-12-09 15:31:04', 'SALE2023/12/0341', 24, 'Table 3', 3, 'kunakornthairestaurant', 1, '', '', '6000.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '450.0000', '450.0000', '0.0000', '322.5000', '6772.5000', 'completed', 'paid', 0, NULL, 18, NULL, NULL, 3, 0, '6772.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '08e106dc47afed887f5e5727b85734b74f2b7428e0a1fb5dbb5e08701bece0c0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1034, '2023-12-09 16:26:14', 'SALE/POS2023/12/0687', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '7500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '562.5000', '562.5000', '0.0000', '403.1300', '8465.6300', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 1, 1, '8465.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1708142099535251ca12f9409df36b6b36cbf810dada5c842d50671f4f4986cb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1035, '2023-12-09 17:59:51', 'SALE2023/12/0342', 26, 'Table 6', 3, 'kunakornthairestaurant', 1, '', '', '500.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '37.5000', '37.5000', '0.0000', '26.8800', '564.3800', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 0, '564.3800', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '426bd4c3c8b181afa0ed1a40b46a4e52de76d857b654e7290b3a763436a90071', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1036, '2023-12-09 18:29:49', 'SALE2023/12/0343', 28, 'Table 8', 3, 'kunakornthairestaurant', 1, '', '', '39700.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 4, '2977.5000', '2977.5000', '0.0000', '2133.8800', '44811.3800', 'completed', 'paid', 0, NULL, 11, 11, '2023-12-09 19:25:39', 9, 0, '44811.3800', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bfec7fad41d7ca773e288903e77256f8093a8df89c5f122cc53069ed2b8a3063', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1038, '2023-12-09 19:18:32', 'SALE/POS2023/12/0688', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '26200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1965.0000', '1965.0000', '0.0000', '1408.2500', '29573.2500', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 6, 1, '29573.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0740ffc98d3f06ce7dee2b809c10c0a5f072b4ffb2f76f9755506374f483de2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1041, '2023-12-09 20:14:22', 'SALE/POS2023/12/0689', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '22700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1702.5000', '1702.5000', '0.0000', '1220.1300', '25622.6300', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 5, 1, '25622.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a22916c1b0d7ae76df946a0cb957c5242fed48019fa5cbe417db82efe7d4b510', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1042, '2023-12-09 20:57:51', 'SALE/POS2023/12/0690', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '44300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3322.5000', '3322.5000', '0.0000', '2381.1300', '50003.6300', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 7, 1, '50003.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa05166c04ed05aa4b102ba74cb07a75278963b2e842bceac9c43e9bec464ff8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1044, '2023-12-09 21:07:27', 'SALE/POS2023/12/0691', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '29800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2235.0000', '2235.0000', '0.0000', '1601.7500', '33636.7500', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 7, 1, '33636.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c12e2e96d506c9258bf2ef1c13e95468cb4d835bdc6e3872de097becd30808ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1048, '2023-12-09 22:03:00', 'SALE/POS2023/12/0694', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1192.5000', '1192.5000', '0.0000', '854.6300', '17947.1300', 'completed', 'paid', 0, NULL, 31, 3, '2023-12-09 23:08:08', 4, 1, '19075.8800', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c067726729312f1a8e3190776d2481fb9b3280427369143befd82651c4c047b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1049, '2023-12-09 23:06:30', 'SALE/POS2023/12/0695', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '32300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2422.5000', '2422.5000', '0.0000', '1736.1300', '36458.6300', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 12, 1, '36458.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1cba56e59a72c4eefad65686a5056a0f295dfad68283728a003a37f0f8b1e72', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1052, '2023-12-10 13:22:00', 'SALE/POS2023/12/0697', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '120000.0000', '0.0000', '13545', '13545.0000', '13545.0000', '0.0000', 4, '7984.1250', '7984.1250', '0.0000', '5721.9600', '120161.0900', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 32, 1, '120161.0900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9f543288c1850e66a9efe6cd2d8f4365aa4f9e2a8114706dbb0822aaf4373b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1053, '2023-12-10 13:26:12', 'SALE/POS2023/12/0698', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '9400.0000', '0.0000', '1061', '1061.0000', '1061.0000', '0.0000', 4, '625.4250', '625.4250', '0.0000', '448.2200', '9412.6500', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '9412.6500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8cc669b013a24bc04be2e74fb1bc84d0685b86524c469b09c9b4f15d24d08085', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1054, '2023-12-10 13:46:24', 'SALE/POS2023/12/0699', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24890.9100', '0.0000', '2900', '2900.0000', '2900.0000', '809.0900', 4, '1710.0000', '2519.0900', '0.0000', '1225.5000', '25735.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 3, 1, '25735.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83c0d0fc11bcbafa9e58015678841d9c85eabf11793d816999aa9ae94d41ca2f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1056, '2023-12-10 15:35:50', 'SALE/POS2023/12/0700', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '30200.0000', '0.0000', '3408', '3408.0000', '3408.0000', '0.0000', 4, '2009.4000', '2009.4000', '0.0000', '1440.0700', '30241.4700', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '30241.4700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8999a8c1aaf8156c242363beb94df1e946116b215eec8d0321418e1ae0cb026e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1058, '2023-12-10 17:11:09', 'SALE/POS2023/12/0701', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '43890.9100', '0.0000', '5045', '5045.0000', '5045.0000', '809.0900', 4, '2974.1250', '3783.2150', '0.0000', '2131.4600', '44760.5900', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 10, 1, '44760.5900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd68adccc23700403b90fc5689c14c4982785ac387498d3db885642db5168ea4d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1060, '2023-12-10 17:37:40', 'SALE/POS2023/12/0703', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '225', '225.0000', '225.0000', '0.0000', 4, '133.1250', '133.1250', '0.0000', '95.4100', '2003.5400', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '2003.5400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0f7716f392da37bc97f4ad14168e807a193663a16b081831815e3fbb6b06a3e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1063, '2023-12-10 19:59:09', 'SALE/POS2023/12/0704', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '20490.9100', '0.0000', '2402', '2402.0000', '2402.0000', '809.0900', 4, '1417.3500', '2226.4400', '0.0000', '1015.7700', '21331.1200', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '21331.1200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1455e10de5bde3fdfdabc1aba0540efd360dcc037b74b45e0622654ea9b486c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1064, '2023-12-10 20:03:13', 'SALE/POS2023/12/0705', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '26400.0000', '0.0000', '2979', '2979.0000', '2979.0000', '0.0000', 4, '1756.5750', '1756.5750', '0.0000', '1258.8800', '26436.4600', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 7, 1, '26436.4600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3481bb2610cc10e4a8e788e892946092c5e428461ed9f56eb0e1c9e6b2808b18', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1065, '2023-12-10 21:08:32', 'SALE/POS2023/12/0706', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '300.0000', '300.0000', '0.0000', '215.0000', '4515.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '4515.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '550dbe26b1bdca3a5916af77d4cf575d969efe0bfcf7df62ba3b9504d5e49486', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1068, '2023-12-10 22:17:09', 'SALE/POS2023/12/0707', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '24500.0000', '0.0000', '2765', '2765.0000', '2765.0000', '0.0000', 4, '1630.1250', '1630.1250', '0.0000', '1168.2600', '24533.3900', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 7, 1, '24533.3900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ab6f9ebc86faf4a7d4d4d47958fb27ffe059bfff42ba8fb590fa82a98829ce53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1069, '2023-12-10 22:24:36', 'SALE/POS2023/12/0708', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '31000.0000', '0.0000', '3499', '3499.0000', '3499.0000', '0.0000', 4, '2062.5750', '2062.5750', '0.0000', '1478.1800', '31041.7600', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '31041.7600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16898645829897d83ab8cf63475255ae4ac9edc1fce7ab16bf3a1c3dc27c9e4a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1070, '2023-12-10 22:39:11', 'SALE/POS2023/12/0709', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15800.0000', '0.0000', '1783', '1783.0000', '1783.0000', '0.0000', 4, '1051.2750', '1051.2750', '0.0000', '753.4100', '15821.6900', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '15821.6900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e8f1666605dcd37a8b4601bb0fe8fd2fe6f1efd202e052fe666560596bdd2af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1072, '2023-12-11 12:22:37', 'SALE/POS2023/12/0710', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '65000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '4875.0000', '4875.0000', '0.0000', '3493.7500', '73368.7500', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 18, 1, '73368.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6f8ea3723b5551ebe1265f3239bd5e1eb3e196e025d7330c61e1fdcbc5003c45', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1074, '2023-12-11 13:13:42', 'SALE/POS2023/12/0711', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '44100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3307.5000', '3307.5000', '0.0000', '2370.3800', '49777.8800', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 14, 1, '49777.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05b43c51b5b4ef55637b11114540b8c8710ad03aa15226203a9c13b53b62e905', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1077, '2023-12-11 18:32:27', 'SALE/POS2023/12/0713', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '41600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3120.0000', '3120.0000', '0.0000', '2236.0000', '46956.0000', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 11, 1, '46956.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3992b93ba8b5db5ebed49f51b1c81e279af6a87a90079a004903fce8736bf386', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1079, '2023-12-11 19:20:19', 'SALE/POS2023/12/0714', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '10000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '750.0000', '750.0000', '0.0000', '537.5000', '11287.5000', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 1, 1, '11287.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd89d4ca4cd60824f45e6e5941904bd09a11684f56ce58696eb29eb6e713510d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1080, '2023-12-11 19:38:45', 'SALE/POS2023/12/0715', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '8590.9100', '0.0000', '', '0.0000', '0.0000', '809.0900', 4, '705.0000', '1514.0900', '0.0000', '505.2500', '10610.2500', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 2, 1, '10610.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2a72168c964ba2ed35f57b5970a986fa2bc1d8ee928052bfc900994b7ac659d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1081, '2023-12-11 20:01:34', 'SALE/POS2023/12/0716', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '15300.0000', '0.0000', '1725', '1725.0000', '1725.0000', '0.0000', 4, '1018.1250', '1018.1250', '0.0000', '729.6600', '15322.7900', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '15322.7900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9fb392fd4f86d80f021bf73ca480280b23f8a7aa92ec7991441bc8505124c51a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1083, '2023-12-11 20:09:23', 'SALE/POS2023/12/0717', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '6500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '487.5000', '487.5000', '0.0000', '349.3800', '7336.8800', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 2, 1, '7336.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6e1fe951c4524bcd66a4a3e31c79a1f9e2829aa3d661ff3c1d5b7320c6de91d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1086, '2023-12-11 20:47:04', 'SALE/POS2023/12/0718', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '112.5000', '112.5000', '0.0000', '80.6300', '1693.1300', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 1, 1, '1693.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e547ef33aa3c2fb186ee68f180f247cfa8b4c7aed80cb0c9905e27a1855bc49', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1088, '2023-12-11 21:18:40', 'SALE/POS2023/12/0719', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '33700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2527.5000', '2527.5000', '0.0000', '1811.3800', '38038.8800', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 17, 1, '38038.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '683f8936842bddaf738e88fa754a99ca6619b35d2fa21dd3001a692a94e638c2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1092, '2023-12-11 22:33:22', 'SALE/POS2023/12/0721', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '36700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2752.5000', '2752.5000', '0.0000', '1972.6300', '41425.1300', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 6, 1, '41425.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '129ee73f19fed57bb50589a4bd184ceeec03ac4d49f4143cef2e47b9b78e2197', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1094, '2023-12-11 23:00:06', 'SALE/POS2023/12/0723', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '37400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2805.0000', '2805.0000', '0.0000', '2010.2500', '42215.2500', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 8, 1, '42215.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3c9b011910f2590684d49e3151619046030d07ff58f71ae139a9b64236ec42c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1095, '2023-12-11 23:33:12', 'SALE/POS2023/12/0724', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '36000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2700.0000', '2700.0000', '0.0000', '1935.0000', '40635.0000', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 5, 1, '40635.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8ee7af56ea96630ceb3f599784c72e5b29790bb7c901c45527b5b682a3f8b9bf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1096, '2023-12-11 23:42:59', 'SALE/POS2023/12/0725', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '150.0000', '150.0000', '0.0000', '107.5000', '2257.5000', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 4, 1, '2257.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '834af7ba1b5679b98fb94d0f57724db166a2a2a5e078291e63a0eb37c64b0f21', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1098, '2023-12-12 13:14:48', 'SALE/POS2023/12/0726', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '46900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3517.5000', '3517.5000', '0.0000', '2520.8800', '52938.3800', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 9, 1, '52938.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12128ddf08a753e524695117815fe3f54b8977b54f8f9e6aa6a735adc85dcf0d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1100, '2023-12-12 14:59:14', 'SALE/POS2023/12/0727', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '28800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2160.0000', '2160.0000', '0.0000', '1548.0000', '32508.0000', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 7, 1, '32508.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a617d7681b4a7369376643c65677bd84e541acb010afdab1bb9cbb94884b7bd6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1102, '2023-12-12 16:57:08', 'SALE/POS2023/12/0728', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '40700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '3052.5000', '3052.5000', '0.0000', '2187.6300', '45940.1300', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 10, 1, '45940.1300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1860646affa758de9a4b3534c617634f0c1178044a947de98d3877a6fcdf30d3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1104, '2023-12-12 18:08:16', 'SALE/POS2023/12/0729', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '34200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '2565.0000', '2565.0000', '0.0000', '1838.2500', '38603.2500', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 8, 1, '38603.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e726c900cc952b50156018c8cca0c5899b9e2cba287101225035eca6b81ca13', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1106, '2023-12-12 21:12:26', 'SALE/POS2023/12/0730', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '20300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 4, '1522.5000', '1522.5000', '0.0000', '1091.1300', '22913.6300', 'completed', 'paid', 0, NULL, 31, NULL, NULL, 4, 1, '22913.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6029a58517d0448153f292ccb1a63a5288b3f07121fd623dc7c90c37cc4b190', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1110, '2023-12-12 22:08:50', 'SALE/POS2023/12/0732', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '32400.0000', '0.0000', '3657', '3657.0000', '3657.0000', '0.0000', 4, '2155.7250', '2155.7250', '0.0000', '1544.9400', '32443.6700', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '32443.6700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6f3bf9d3b816e1c963b3fa7f89c7c61f5e61473ee66602368ee6b2787688d7d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1111, '2023-12-12 22:09:33', 'SALE/POS2023/12/0733', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '3000.0000', '0.0000', '300', '300.0000', '300.0000', '0.0000', 4, '202.5000', '202.5000', '0.0000', '145.1300', '3047.6300', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '3047.6300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54905b0cb83a69acb008a759c4c0ce62198b5039f16d87d8de73dd8334731e5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `service_charge`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1114, '2023-12-12 22:55:02', 'SALE/POS2023/12/0736', 1, 'Walk-in Customer', 3, 'kunakornthairestaurant', 1, '', '', '46300.0000', '0.0000', '5226', '5226.0000', '5226.0000', '0.0000', 4, '3080.5500', '3080.5500', '0.0000', '2207.7300', '46362.2800', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 12, 1, '46362.2800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1adb52391da1dbe78384fea99e9a30f087c95c5b6cee407595db0aac9cb330a', 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=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01999be2be8738bb3f119b3fa15c6497d189478d', '102.91.52.103', 1702385658, '__ci_last_regenerate|i:1702385621;identity|s:5:\"lydia\";username|s:5:\"lydia\";email|s:20:\"lydiaidagu@gmail.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1702383221\";last_ip|s:13:\"102.91.54.110\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('021a359cee65cc90fe9633d0c945a26629ef89c6', '129.56.24.94', 1702329697, '__ci_last_regenerate|i:1702329697;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a6efda2140fd66e5b564be6edab4ef32d646a7', '192.71.38.71', 1702351033, '__ci_last_regenerate|i:1702351033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02f02aace878d8c92abca941b4582d809abbab71', '197.210.52.171', 1702313298, '__ci_last_regenerate|i:1702313298;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702289506\";last_ip|s:14:\"197.210.53.231\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702313296;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0329a32f457913bad55d956dff51fba5dc9ef0d0', '216.244.66.233', 1702319142, '__ci_last_regenerate|i:1702319142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('039e896be760ee9d25fc9c51dfc58d449e8bb8e7', '197.210.53.231', 1702318818, '__ci_last_regenerate|i:1702318818;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702289506\";last_ip|s:14:\"197.210.53.231\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702318807;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0538f64b4b4b9076ef0823ec779bac9e5f6a0978', '197.210.77.106', 1702331830, '__ci_last_regenerate|i:1702331830;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702321384\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702331826;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a01a5ec2fda0121e0ac03ca602eb9c759b4e2ce', '129.56.24.94', 1702334388, '__ci_last_regenerate|i:1702334388;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702296904\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c919cca3618681387777fed51abfd2093fbf191', '102.91.52.103', 1702391684, '__ci_last_regenerate|i:1702391684;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702389673;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ce5f0f3eed20900b9b25b83a10424fc854214ff', '102.91.55.66', 1702385044, '__ci_last_regenerate|i:1702385044;identity|s:7:\"bridget\";username|s:7:\"bridget\";email|s:26:\"bridgetmatthew97@gmail.com\";user_id|s:1:\"9\";old_last_login|s:10:\"1702238551\";last_ip|s:13:\"129.56.24.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d52bef0cee6444b6fdbede8d29c319c5855614c', '207.46.13.7', 1702367923, '__ci_last_regenerate|i:1702367922;requested_page|s:16:\"category/dessert\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d5aa4652d444379ac4aba4bf6c0e171c9871642', '34.229.128.5', 1702325943, '__ci_last_regenerate|i:1702325942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e567b91a386800ea2deae9719c794f970a63d5f', '197.210.53.231', 1702304668, '__ci_last_regenerate|i:1702304558;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702296868;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f8f880d3aa912231206d019435b2ab602112869', '192.71.2.171', 1702351033, '__ci_last_regenerate|i:1702351033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fcf932524cb07355b89fcc6559f5c2963784503', '197.210.53.88', 1702325726, '__ci_last_regenerate|i:1702325726;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702312891\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702325089;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1031076199f99b0142d7a5ad87d5c3a4cf0801f0', '197.210.53.231', 1702324306, '__ci_last_regenerate|i:1702324306;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702312891\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702324118;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b845f5f3c73bf0df1ce8ac515d3e3330aef5db', '213.180.203.4', 1702417816, '__ci_last_regenerate|i:1702417816;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('120472702f0ce70c3548c2499fc303463433ff1d', '102.91.52.147', 1702414841, 'requested_page|s:21:\"admin/sales/edit/1091\";__ci_last_regenerate|i:1702414841;identity|s:7:\"bridget\";username|s:7:\"bridget\";email|s:26:\"bridgetmatthew97@gmail.com\";user_id|s:1:\"9\";old_last_login|s:10:\"1702379671\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13116d7c82146adbea3b5436b74cecce7024d90d', '34.174.203.166', 1702307288, '__ci_last_regenerate|i:1702307282;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1854ee66fb7a794b594f429415f97f151e89624c', '102.91.55.66', 1702395231, '__ci_last_regenerate|i:1702395231;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702389673;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18a593f69b0e90f8756afdd843711e91f55eb5dc', '197.210.52.58', 1702380411, '__ci_last_regenerate|i:1702380411;requested_page|s:13:\"admin/welcome\";error|s:37:\"<p>Login Failed, Please try again</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19dd1f56f489408df71a9420b94ea873488ddfef', '102.91.54.110', 1702415063, '__ci_last_regenerate|i:1702415063;requested_page|s:19:\"admin/reports/sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702400616\";last_ip|s:13:\"197.211.52.81\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c7f432831729058ece529f15b02e7c7649b983f', '129.56.24.94', 1702334511, '__ci_last_regenerate|i:1702334508;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1db8e04301d4b926eab1a51d54d8cc6bdd2abb60', '102.91.52.105', 1702414219, 'requested_page|s:21:\"admin/sales/edit/1091\";__ci_last_regenerate|i:1702414214;identity|s:7:\"bridget\";username|s:7:\"bridget\";email|s:26:\"bridgetmatthew97@gmail.com\";user_id|s:1:\"9\";old_last_login|s:10:\"1702379671\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ee057788f0182c8171195b1303fc48d092723a4', '102.91.52.120', 1702388494, '__ci_last_regenerate|i:1702388494;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702387796;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c2127eec168407bdc743f68067610997447f18', '197.210.52.171', 1702313814, '__ci_last_regenerate|i:1702313814;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702289506\";last_ip|s:14:\"197.210.53.231\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702313465;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20ee5d0e0c8e9925a3c84888b40c793060897279', '197.210.77.106', 1702318463, '__ci_last_regenerate|i:1702318463;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702289506\";last_ip|s:14:\"197.210.53.231\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702318448;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('222eb6db50c226a2a0cb6fddb04c273beea5f01c', '102.91.55.226', 1702415936, '__ci_last_regenerate|i:1702415936;identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702408086\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1702415597;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-10-29 17:39:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('248eb2bf4abc08d48033a4fe74fba5513d116f9f', '159.203.164.214', 1702291830, '__ci_last_regenerate|i:1702291830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('251c4034bb1f3dc03fc9c720b117d3036e5a53fb', '192.71.10.105', 1702351032, '__ci_last_regenerate|i:1702351032;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2556d735154e8509c73e1eb88425545a6a6c8bf6', '54.163.3.87', 1702326011, '__ci_last_regenerate|i:1702326011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2556ddde07f5a02c4340d17abe41b6807bad009e', '102.91.55.226', 1702418368, '__ci_last_regenerate|i:1702418368;requested_page|s:19:\"admin/reports/sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702400616\";last_ip|s:13:\"197.211.52.81\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29272907f43273c12e06d89e7fa191e42df891fe', '197.210.52.171', 1702330371, '__ci_last_regenerate|i:1702330371;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702321384\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702330370;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b49ca4306785f9fb2f87bbfb1d201aa03aaf7a6', '197.210.77.106', 1702332913, '__ci_last_regenerate|i:1702332913;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702321384\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702332342;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d08bee1e833b6b074cd060d4cdcd29dfb16cedc', '129.56.24.94', 1702331887, '__ci_last_regenerate|i:1702331887;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702296904\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e4ddccaedfe763f418845d4e4453ffbcdc2c61b', '197.210.53.88', 1702327861, '__ci_last_regenerate|i:1702327861;requested_page|s:15:\"admin/sales/add\";identity|s:8:\"maxybest\";username|s:8:\"maxybest\";email|s:26:\"mercybestdickson@gmail.com\";user_id|s:2:\"18\";old_last_login|s:10:\"1702294580\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fa40463a378e896e50907abbc8d89afa5fdb3dd', '40.77.167.17', 1702335068, '__ci_last_regenerate|i:1702335068;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30179cae9d1199b81c777de712f5531d013ed0c2', '197.210.52.171', 1702313005, '__ci_last_regenerate|i:1702313005;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30cdcffd3959e5bdd21825df5947c77eb7822d9f', '193.186.4.90', 1702323290, '__ci_last_regenerate|i:1702323290;error|s:99:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>https://www.google.com/\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('329cc17be0ec8762448ad818836d80c2ad9bca50', '102.91.52.103', 1702400586, '__ci_last_regenerate|i:1702400586;identity|s:5:\"lydia\";username|s:5:\"lydia\";email|s:20:\"lydiaidagu@gmail.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1702396888\";last_ip|s:12:\"102.91.55.66\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e197ad78ac77564be263876797b88036116928', '216.244.66.233', 1702365096, '__ci_last_regenerate|i:1702365095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33f3f74c145cd58769029ac464fcb0655cf91a5e', '197.210.53.231', 1702323244, '__ci_last_regenerate|i:1702323244;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702312891\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702321844;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34407ffaf86884e273193d50db7971782bc34f01', '197.210.53.231', 1702325473, '__ci_last_regenerate|i:1702325473;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34561eb19cd580c0c222012e1845441657d43df0', '102.91.55.68', 1702413501, '__ci_last_regenerate|i:1702413501;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702411975;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34cbb6363d021e953dd84f4f040a7165f36b737f', '216.244.66.233', 1702365095, '__ci_last_regenerate|i:1702365095;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36581a9b7516ef06b9fb87b5b389095dcd3998c7', '197.210.77.106', 1702333935, '__ci_last_regenerate|i:1702333935;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702321384\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702332342;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ea5db8c30ea82c17073a351c6516d94a2f1ae0', '197.210.77.106', 1702325219, '__ci_last_regenerate|i:1702325219;requested_page|s:15:\"admin/sales/add\";identity|s:8:\"maxybest\";username|s:8:\"maxybest\";email|s:26:\"mercybestdickson@gmail.com\";user_id|s:2:\"18\";old_last_login|s:10:\"1702294580\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('389505265b72dee42d7929e9dc4942065d7e56e9', '102.91.54.110', 1702397430, '__ci_last_regenerate|i:1702397430;identity|s:16:\"sethsamson122000\";username|s:16:\"sethsamson122000\";email|s:24:\"samsonjr122000@gmail.com\";user_id|s:2:\"17\";old_last_login|s:10:\"1702238832\";last_ip|s:13:\"129.56.24.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('395cd37a4a4aacf5f838105cffd0028804d42947', '216.244.66.233', 1702365396, '__ci_last_regenerate|i:1702365396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b50ba3e63e171408f0fbc7577a1f21789719156', '102.91.55.226', 1702416284, '__ci_last_regenerate|i:1702416284;identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702408086\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1702416264;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-10-29 17:39:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c9fa7122c6adcf7934bfc0bf648c0d0ed6f39bd', '66.249.93.43', 1702322703, '__ci_last_regenerate|i:1702322703;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d9af1806e03522243e1277d8e269b7d3c593a0d', '129.56.24.94', 1702329669, '__ci_last_regenerate|i:1702329669;requested_page|s:15:\"admin/sales/add\";identity|s:8:\"maxybest\";username|s:8:\"maxybest\";email|s:26:\"mercybestdickson@gmail.com\";user_id|s:2:\"18\";old_last_login|s:10:\"1702294580\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3df42e14c551baac2bf135b28c2d71c5d6c70075', '197.210.53.231', 1702326215, '__ci_last_regenerate|i:1702326215;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702312891\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702325957;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e4c28934150c6097f171579bc99f32129b462b8', '213.180.203.61', 1702410059, '__ci_last_regenerate|i:1702410059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f0b6d9c8581e2395271b28c9733348b4daa873a', '216.244.66.233', 1702407239, '__ci_last_regenerate|i:1702407239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f9435ffebfe12740f1bb9f8c6e6d28d628c2e44', '129.56.24.94', 1702332505, '__ci_last_regenerate|i:1702332505;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401a166934efbfda289a713aa3c87950deefd160', '160.152.176.9', 1702423928, '__ci_last_regenerate|i:1702423927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4056abba5e53683afb71cb84ba428622aad52596', '157.55.39.54', 1702311820, '__ci_last_regenerate|i:1702311819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41256e57b2f9c84f94e161d44fd4068fb26c77cf', '197.210.77.106', 1702292941, '__ci_last_regenerate|i:1702292941;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702141043\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41cca2ba3dbe910a78d92ecd29c467e271db5a16', '197.210.77.106', 1702297071, '__ci_last_regenerate|i:1702296899;requested_page|s:25:\"admin/reports/profit_loss\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702234653\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('440e89c3d500b11a0af154dbae3729bd127b0cd7', '197.210.77.106', 1702292188, '__ci_last_regenerate|i:1702292188;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702141043\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4492c2735d06afcdaa39670b943b99f7490dee43', '216.244.66.233', 1702400704, '__ci_last_regenerate|i:1702400704;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d09aba0477d998a58b7653edc7262fab2bc3d4', '197.210.77.106', 1702328413, '__ci_last_regenerate|i:1702328413;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702321384\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702328278;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46c9cef90dc97885b4f3dc8b5737677f22094916', '197.210.52.171', 1702316075, '__ci_last_regenerate|i:1702316075;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702289506\";last_ip|s:14:\"197.210.53.231\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702315952;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47a421f68c4c1f3297b80975c7ccd5f2cfedfd87', '102.91.52.103', 1702380307, '__ci_last_regenerate|i:1702380307;identity|s:7:\"bridget\";username|s:7:\"bridget\";email|s:26:\"bridgetmatthew97@gmail.com\";user_id|s:1:\"9\";old_last_login|s:10:\"1702238551\";last_ip|s:13:\"129.56.24.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47ec7ce0ca166abf31d97171380971bcc67a14c4', '197.210.52.171', 1702296730, '__ci_last_regenerate|i:1702296730;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702296705;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49801ec42b27dd3a605d95f62445885164b7762b', '216.244.66.233', 1702417272, '__ci_last_regenerate|i:1702417271;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49c02779e65c363da2645b46f661bbf843164fae', '102.91.55.66', 1702387755, '__ci_last_regenerate|i:1702387755;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702386265;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49ef3af8017902e7165fb592e76a66b89496fc94', '129.56.24.94', 1702334508, '__ci_last_regenerate|i:1702334508;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b84505276dac229753e19463f25ba47e3677aaf', '102.91.52.120', 1702409473, '__ci_last_regenerate|i:1702409473;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702401449;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cb5e050ac09293fd077e17372753f5e454b0f0b', '197.210.52.171', 1702329624, '__ci_last_regenerate|i:1702329624;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702321384\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702329615;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d11c522965df8423be2c533d1640577f3d5cd2e', '44.235.74.87', 1702328245, '__ci_last_regenerate|i:1702328245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4da8470b59cc5ba48c30fd94c8f5dbd5fd9860c6', '197.210.53.231', 1702319839, '__ci_last_regenerate|i:1702319839;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702289506\";last_ip|s:14:\"197.210.53.231\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702318940;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e490e54fdbf3986976b68d4dca96f72a663ea4f', '197.210.77.106', 1702295393, '__ci_last_regenerate|i:1702295393;identity|s:8:\"maxybest\";username|s:8:\"maxybest\";email|s:26:\"mercybestdickson@gmail.com\";user_id|s:2:\"18\";old_last_login|s:10:\"1702143418\";last_ip|s:13:\"129.56.24.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f176bf159cc54b45cad81a6a18e86baf1603dd3', '160.152.176.9', 1702424569, '__ci_last_regenerate|i:1702424569;requested_page|s:5:\"admin\";identity|s:5:\"owner\";username|s:5:\"owner\";email|s:18:\"owner@tecdiary.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1702068820\";last_ip|s:12:\"129.56.24.93\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1702424540;register_id|s:1:\"1\";cash_in_hand|s:9:\"5000.0000\";register_open_time|s:19:\"2023-10-15 18:01:41\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f9936fafad23be46c3e25640ed15378bd6c3cc7', '197.210.77.106', 1702324954, '__ci_last_regenerate|i:1702324954;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702312891\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702324118;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e0ca4291ce85957d6ffed769b952e456a877c2', '213.180.203.61', 1702410058, '__ci_last_regenerate|i:1702410058;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e37197b7233595f3d735b4779d1076210e55b2', '216.244.66.233', 1702381379, '__ci_last_regenerate|i:1702381379;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52e92b903c2f6168804549f55bc0ad809a3b89f3', '159.89.12.40', 1702343692, '__ci_last_regenerate|i:1702343692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('534d0a54c6634ba76f6bde186f73947ffb961a39', '52.167.144.18', 1702329372, '__ci_last_regenerate|i:1702329372;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54dbf78ea7689676d7e3bb4c15341913a8b044aa', '197.210.77.106', 1702328639, '__ci_last_regenerate|i:1702328639;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702296904\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54fe83e53636b377d509539d091539a0818be4fc', '207.46.13.141', 1702353014, '__ci_last_regenerate|i:1702353013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550000aa5e74451e87371b5cc2a582b44792b1b3', '129.56.24.94', 1702330961, '__ci_last_regenerate|i:1702330961;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550ce03c805c5a1e4ac125d5366452716eb14118', '102.91.52.103', 1702394715, '__ci_last_regenerate|i:1702394715;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702389673;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55479188bc261e3dcbf79c421ea8de2497f75235', '197.210.77.106', 1702327645, '__ci_last_regenerate|i:1702327645;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702312891\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702326390;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('561ed41ef0b6d23e78e511e449267b4b62838822', '102.91.55.68', 1702413862, '__ci_last_regenerate|i:1702413862;requested_page|s:13:\"admin/welcome\";identity|s:5:\"lydia\";username|s:5:\"lydia\";email|s:20:\"lydiaidagu@gmail.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1702400587\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('562b03c029eb0f0bac827cfab229875546f4cddc', '197.210.77.106', 1702297035, '__ci_last_regenerate|i:1702297035;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702296868;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58972fdead31f1267f624475304ddaa8b93257eb', '159.89.41.24', 1702407852, '__ci_last_regenerate|i:1702407851;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5af53c59ecc02963e4a0e852f0447ce27164ff2a', '129.56.24.94', 1702325846, '__ci_last_regenerate|i:1702325846;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b0bf8c9af8eed05b67fe7670024a4c8baddb9d9', '102.91.52.120', 1702382087, '__ci_last_regenerate|i:1702382087;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702381690;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b89f2571272ecee17e83c569d824c4d3a27aaf2', '197.210.52.171', 1702320615, '__ci_last_regenerate|i:1702320615;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ba1e15941867fed0f5968f682a696a907d6fedb', '102.91.52.105', 1702418083, '__ci_last_regenerate|i:1702418083;identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702408086\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1702418081;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-10-29 17:39:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f265b3e185eb90fe414176df935cdd14e2a2b92', '102.91.54.110', 1702383106, '__ci_last_regenerate|i:1702383106;identity|s:7:\"bridget\";username|s:7:\"bridget\";email|s:26:\"bridgetmatthew97@gmail.com\";user_id|s:1:\"9\";old_last_login|s:10:\"1702238551\";last_ip|s:13:\"129.56.24.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f489d43ebd0f76a41224d0ec5bf58e0ea454a5f', '102.91.55.66', 1702381360, '__ci_last_regenerate|i:1702381360;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fc0ca277a12372992828cd3df3d0a8c693bd5ce', '197.210.52.171', 1702304558, '__ci_last_regenerate|i:1702304558;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702296868;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe760bff22dbb628b53c54f7a7a673e5e70bafb', '18.215.159.15', 1702326099, '__ci_last_regenerate|i:1702326099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('607c2cdfa8cef245921c56a7f9547d6ea433bdb3', '102.91.54.110', 1702413913, '__ci_last_regenerate|i:1702413913;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702411975;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e8d610ef829c55926a30f78932da48c0f9904d', '192.71.23.211', 1702351032, '__ci_last_regenerate|i:1702351032;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('665c38545ee4ab1c8123dccb0b8a00773634c83b', '102.91.54.110', 1702414004, '__ci_last_regenerate|i:1702413862;requested_page|s:13:\"admin/welcome\";identity|s:5:\"lydia\";username|s:5:\"lydia\";email|s:20:\"lydiaidagu@gmail.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1702400587\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b1aa7d9501cc170b39ecaf0e8e855eb1bebb79', '197.210.77.106', 1702303541, '__ci_last_regenerate|i:1702303541;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702296868;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68462da941e43e13d8f43a5343a11b6c9f67f471', '216.244.66.233', 1702319142, '__ci_last_regenerate|i:1702319142;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aaba9c9ed3a82635769d4535c98c0fe03f21b8f', '216.244.66.233', 1702417270, '__ci_last_regenerate|i:1702417270;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b4e230c85874eb2200ee2b54aca8ed9bf86649f', '102.91.52.147', 1702401784, '__ci_last_regenerate|i:1702401784;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702401449;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b50ab8405bc3dfd8fc198a156ddb9a52355c7d0', '197.210.53.231', 1702334237, '__ci_last_regenerate|i:1702334237;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702321384\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702334231;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c9a3553f5c57c758e0dc0ee6dc4776576a1c10b', '34.229.128.5', 1702325943, '__ci_last_regenerate|i:1702325942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ca34466b8bc0e85d9dbf1cb40b575cd7adc6eb1', '102.91.52.103', 1702410526, '__ci_last_regenerate|i:1702410526;requested_page|s:19:\"admin/reports/sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702400616\";last_ip|s:13:\"197.211.52.81\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1218ce49a998b9e6c83f786e21243443c71130', '102.91.52.103', 1702385621, '__ci_last_regenerate|i:1702385621;identity|s:5:\"lydia\";username|s:5:\"lydia\";email|s:20:\"lydiaidagu@gmail.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1702383221\";last_ip|s:13:\"102.91.54.110\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d875f8dc102e8b2161df0055ea89ca7f8035cfa', '197.210.53.231', 1702314969, '__ci_last_regenerate|i:1702314969;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d8ad084afdb1f64e8b06fecc4ca3739419b6143', '43.130.47.136', 1702343154, '__ci_last_regenerate|i:1702343153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fe47ad6cbdbbb5e273b4f15b296cde60ce85ffa', '102.91.55.226', 1702398811, '__ci_last_regenerate|i:1702398811;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702396817;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7024f0f20e3c786b3d68a69ab34dde91f7ab3833', '197.210.77.106', 1702314124, '__ci_last_regenerate|i:1702314124;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702289506\";last_ip|s:14:\"197.210.53.231\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702314092;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('704e1148892a722e605748e6e0e4af2e2d01d66e', '197.210.53.88', 1702332252, '__ci_last_regenerate|i:1702332252;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702321384\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702332088;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70917a96fdddc1274168fb9a31700c61dffc951e', '216.244.66.233', 1702299287, '__ci_last_regenerate|i:1702299287;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71f3b5e54f6f04ce44d50def878f4f5085254280', '40.77.190.213', 1702350919, '__ci_last_regenerate|i:1702350919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73b7304163bcc49f1a0d5dbe4c6c9ae34c07b18d', '207.46.13.17', 1702368205, '__ci_last_regenerate|i:1702368205;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74832d00d9c5377b6a1d69901dc309d66525bdcf', '102.91.52.120', 1702419151, '__ci_last_regenerate|i:1702419150;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702380455\";last_ip|s:12:\"102.91.55.66\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75008c746273cf2e86e97b8e64654361e129b3fa', '197.210.53.231', 1702291614, '__ci_last_regenerate|i:1702291614;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702141043\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77cb13c44f868ca6ca591022a21c84290ad850cb', '197.210.52.171', 1702295844, '__ci_last_regenerate|i:1702295817;identity|s:8:\"maxybest\";username|s:8:\"maxybest\";email|s:26:\"mercybestdickson@gmail.com\";user_id|s:2:\"18\";old_last_login|s:10:\"1702143418\";last_ip|s:13:\"129.56.24.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79903eca97fa0527bb950bd2ae54a1c60edd4b63', '34.162.249.121', 1702295539, '__ci_last_regenerate|i:1702295536;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79a3c5e50b8107e6cc78cb9d97a63e0255265fa4', '197.210.53.231', 1702329961, '__ci_last_regenerate|i:1702329961;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702321384\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702329902;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af40928c061f13f8ae09d66609857e95c5738bd', '197.210.53.231', 1702321376, '__ci_last_regenerate|i:1702321376;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702296904\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b6619221cc47f08f9ea21f65760f4594a510611', '102.91.52.105', 1702413326, 'requested_page|s:11:\"admin/sales\";__ci_last_regenerate|i:1702413326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bafe534a7540c8acaf3f89c7ea90d05bf42fce7', '160.152.46.137', 1702321374, '__ci_last_regenerate|i:1702321374;requested_page|s:15:\"admin/sales/add\";identity|s:8:\"maxybest\";username|s:8:\"maxybest\";email|s:26:\"mercybestdickson@gmail.com\";user_id|s:2:\"18\";old_last_login|s:10:\"1702294580\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be252efc836b959cd09c570f19530f1fb65f042', '197.210.53.231', 1702293045, '__ci_last_regenerate|i:1702293045;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cfeaf2a45ca4ba376b836a3b038e198306d46cb', '102.91.55.66', 1702381690, '__ci_last_regenerate|i:1702381690;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702381673;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f69b8ecd731f3516a2ca67f1646f3ed4af6cc63', '197.210.52.171', 1702294430, '__ci_last_regenerate|i:1702294430;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702294082;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fc236047df9a347a5a7a4bb65fc8ee3a6eb6294', '197.210.52.171', 1702295116, '__ci_last_regenerate|i:1702295116;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702295023;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80521f0d96433ff024e4cdf1262e33dbbcd0fc65', '197.210.53.231', 1702294808, '__ci_last_regenerate|i:1702294808;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702294567;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80624893e155921f7d9ce51840385e37219d9eac', '192.36.71.133', 1702351032, '__ci_last_regenerate|i:1702351032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8088a9a1bd5933dcc890ad003e247773ffa55dbb', '170.106.101.31', 1702321652, '__ci_last_regenerate|i:1702321652;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('842479ade26ad924d60ab3b6db1452b474f8cd9b', '102.91.52.120', 1702384246, '__ci_last_regenerate|i:1702384246;identity|s:5:\"lydia\";username|s:5:\"lydia\";email|s:20:\"lydiaidagu@gmail.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1702234893\";last_ip|s:13:\"129.56.24.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84d23f4871e427b63172e8c0537c699e996c3639', '213.180.203.4', 1702417817, '__ci_last_regenerate|i:1702417817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85fe92a027c183d9bd8f6cb26546a0cc4e8fbf0d', '52.167.144.229', 1702349945, '__ci_last_regenerate|i:1702349945;requested_page|s:19:\"category/stir-fried\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('868427351c9a5fea6a9a395ad83eeb5bb0e44e13', '160.152.46.137', 1702321978, '__ci_last_regenerate|i:1702321978;requested_page|s:15:\"admin/sales/add\";identity|s:8:\"maxybest\";username|s:8:\"maxybest\";email|s:26:\"mercybestdickson@gmail.com\";user_id|s:2:\"18\";old_last_login|s:10:\"1702294580\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8791521d1a2dbd8998b9f0103d8f0ff2f5f2da6e', '192.71.38.71', 1702351033, '__ci_last_regenerate|i:1702351033;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87ba6596877894446f7cf3674b75cba7c39ad9a7', '43.155.152.154', 1702395186, '__ci_last_regenerate|i:1702395186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('896ceef196793ebb964026e66aeeac900ee73789', '197.210.53.231', 1702323980, '__ci_last_regenerate|i:1702323980;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702312891\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702321844;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c40db416466cf6a7c020738e6399d784eb6113d', '216.244.66.233', 1702407509, '__ci_last_regenerate|i:1702407509;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d4b879521c8a49051d0c87f4dcc12c367776495', '102.91.52.105', 1702419150, '__ci_last_regenerate|i:1702419150;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702380455\";last_ip|s:12:\"102.91.55.66\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d8ac75266a4d3ec90af7e699e175e744dd7a66b', '216.244.66.233', 1702424212, '__ci_last_regenerate|i:1702424212;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('907f6e53684875170d8101c5f38de3677cc55f01', '192.71.42.108', 1702351033, '__ci_last_regenerate|i:1702351033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('918e0b401f7093a0ab99ffde3124b5a54e1173e9', '43.134.89.111', 1702292155, '__ci_last_regenerate|i:1702292155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9204ad61c64e2b3394a409a4118691d6e33ca2ea', '43.159.128.172', 1702408257, '__ci_last_regenerate|i:1702408257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93c6a7362c0d74d333fb3baf3dc9666422d1c05e', '193.186.4.90', 1702322704, '__ci_last_regenerate|i:1702322704;error|s:99:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>https://www.google.com/\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9491aeaac912bbae09b175789f3270418b5d2ba0', '102.91.54.110', 1702396333, '__ci_last_regenerate|i:1702396333;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702389673;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9542b32ae85404d7ff1be089aa552b7ca7fc8cfe', '34.229.194.43', 1702325979, '__ci_last_regenerate|i:1702325979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('955b1a00b3ddb39926508bffe84169ac8aab55aa', '197.210.53.231', 1702291142, '__ci_last_regenerate|i:1702291142;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702141043\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('960961c074c82d83b9868cd8fe51509afde40cea', '197.210.52.171', 1702324819, '__ci_last_regenerate|i:1702324819;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96c3900496b396a9e68cff1d2900edd62a7a1565', '102.91.54.110', 1702385044, '__ci_last_regenerate|i:1702385044;identity|s:7:\"bridget\";username|s:7:\"bridget\";email|s:26:\"bridgetmatthew97@gmail.com\";user_id|s:1:\"9\";old_last_login|s:10:\"1702238551\";last_ip|s:13:\"129.56.24.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d4005efd09820d467c041777d01c2ed9d99d19', '197.210.52.171', 1702320578, '__ci_last_regenerate|i:1702320578;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702289506\";last_ip|s:14:\"197.210.53.231\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702319956;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ec20001a679b9ee6c063f657790fde8e48e55a', '18.215.159.15', 1702326099, '__ci_last_regenerate|i:1702326099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b91334a9be9a2446a0cbd52e66ae4d765dabc5', '102.91.52.147', 1702399429, '__ci_last_regenerate|i:1702399429;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702398945;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a076533fdf7e0ad20f3c5b33f754bcd4ce7a738', '102.91.52.103', 1702379658, '__ci_last_regenerate|i:1702379658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a7a1f6e92889763f9084b8508ef571a44440cf7', '15.206.235.52', 1702331849, '__ci_last_regenerate|i:1702331849;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9f386ce9fdca7a92ba6fa3a6d0f0ca0e0874b5', '40.77.167.143', 1702329254, '__ci_last_regenerate|i:1702329254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ed7411a3fd77f3fed7d34f4b988e19c0a171eb0', '102.91.52.120', 1702389539, '__ci_last_regenerate|i:1702389539;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702387796;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee314571eca4b78506d26870b54d710733bfc42', '216.244.66.233', 1702400955, '__ci_last_regenerate|i:1702400955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07dbcb01aff69bac1c75183ba9cb59788ca2d30', '102.91.55.226', 1702397910, '__ci_last_regenerate|i:1702397910;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702396817;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0d9940d3e08555ef77f3f282783a6c27c94dd45', '197.210.53.231', 1702319626, '__ci_last_regenerate|i:1702319626;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";last_activity|i:1702319626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0e06c98ba14a830af9285bd9a0cfadb40c61378', '34.125.24.35', 1702291493, '__ci_last_regenerate|i:1702291488;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a11a5def8f30600a32799d243b4e5a2056986c61', '197.210.53.231', 1702321520, '__ci_last_regenerate|i:1702321520;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1245edffe261b03796ac5d2e4c08f0b680111ea', '102.91.52.147', 1702394266, '__ci_last_regenerate|i:1702394266;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702389673;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1e66e5da936f817ac5c305255586a33e0d7d6de', '129.56.24.94', 1702331647, '__ci_last_regenerate|i:1702331647;identity|s:8:\"maxybest\";username|s:8:\"maxybest\";email|s:26:\"mercybestdickson@gmail.com\";user_id|s:2:\"18\";old_last_login|s:10:\"1702318275\";last_ip|s:14:\"160.152.46.137\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a25cb609a284e82492e400fb3f6845336aca4992', '197.210.53.231', 1702323900, '__ci_last_regenerate|i:1702323900;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702289823\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5d6cb1f0cf275530f25249df5131ec38f173280', '102.91.52.147', 1702398472, '__ci_last_regenerate|i:1702398472;identity|s:5:\"lydia\";username|s:5:\"lydia\";email|s:20:\"lydiaidagu@gmail.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1702396888\";last_ip|s:12:\"102.91.55.66\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a711722b9d769c6c6bde0d6f56c040966efcc86f', '197.210.53.231', 1702324405, '__ci_last_regenerate|i:1702324405;requested_page|s:15:\"admin/sales/add\";identity|s:8:\"maxybest\";username|s:8:\"maxybest\";email|s:26:\"mercybestdickson@gmail.com\";user_id|s:2:\"18\";old_last_login|s:10:\"1702294580\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a825809dd717f913622add4588df35fb4b996707', '129.56.24.94', 1702329910, '__ci_last_regenerate|i:1702329910;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702296904\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abbbbd2e33faa0d4bcbaca2b97c20f5844ca7c2a', '197.210.77.106', 1702328018, '__ci_last_regenerate|i:1702328018;identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702320871\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac398631b2064eb5c86a449441cf565836022084', '197.210.77.106', 1702318071, '__ci_last_regenerate|i:1702318071;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702289506\";last_ip|s:14:\"197.210.53.231\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702316075;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad4659ee0813a09bd3fb9418d48f555fe4b585d7', '102.91.52.103', 1702386005, '__ci_last_regenerate|i:1702386005;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702385654;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad5406d1b1b01fc4c0ae8b7ac6a71f0d62368f9a', '216.244.66.233', 1702407238, '__ci_last_regenerate|i:1702407238;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adcd54485838f5c055f1681eae9d3c6fff8be4fc', '102.91.52.120', 1702400589, '__ci_last_regenerate|i:1702400586;identity|s:5:\"lydia\";username|s:5:\"lydia\";email|s:20:\"lydiaidagu@gmail.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1702396888\";last_ip|s:12:\"102.91.55.66\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae2d42716f3f261c4a74660c258e78725bd69c82', '216.244.66.233', 1702319407, '__ci_last_regenerate|i:1702319406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae63591551820c1210368e1f4fecb014fce82e94', '102.91.52.103', 1702400784, '__ci_last_regenerate|i:1702400586;identity|s:5:\"lydia\";username|s:5:\"lydia\";email|s:20:\"lydiaidagu@gmail.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1702397450\";last_ip|s:13:\"102.91.52.147\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b096dc7ecf1384c5d37326f03022285b44dbd89b', '129.56.24.94', 1702332891, '__ci_last_regenerate|i:1702332891;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702296904\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2fd474319c158940ff4448fec46033215e04e86', '52.167.144.221', 1702399438, '__ci_last_regenerate|i:1702399438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6a7ab0fd82fe2eefdd3994331ff76f4ffe7456d', '197.210.53.88', 1702303229, '__ci_last_regenerate|i:1702303229;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702296868;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba3b9b1dc0c1daa7e71b3e724ec92a7422dd9c09', '43.130.7.211', 1702309123, '__ci_last_regenerate|i:1702309123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba3c7440cf9c66d96d42e66e5e114645068f76df', '159.89.12.40', 1702343692, '__ci_last_regenerate|i:1702343692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbb210a2c5a352d16253b6b7b694788fe31ef862', '102.91.52.120', 1702414692, '__ci_last_regenerate|i:1702414692;requested_page|s:19:\"admin/reports/sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702400616\";last_ip|s:13:\"197.211.52.81\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcab359c2e1c14b49f308d5691a7d0de8d2a01b4', '197.210.52.171', 1702294506, '__ci_last_regenerate|i:1702294506;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702141043\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be9bc144085133db801b567826c504331a76d8fd', '216.244.66.233', 1702417561, '__ci_last_regenerate|i:1702417560;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0b3dbcd9b411e71e25e20b64f3c1b108e6421e9', '216.244.66.233', 1702381672, '__ci_last_regenerate|i:1702381672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c29679e5a28d543354b973fd1ad74e6ad31a5715', '197.210.52.171', 1702295084, '__ci_last_regenerate|i:1702295084;identity|s:8:\"maxybest\";username|s:8:\"maxybest\";email|s:26:\"mercybestdickson@gmail.com\";user_id|s:2:\"18\";old_last_login|s:10:\"1702143418\";last_ip|s:13:\"129.56.24.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c43485b7bff49041544c0e4f2fca0a9bf8f184e1', '160.152.176.9', 1702424799, '__ci_last_regenerate|i:1702424569;requested_page|s:5:\"admin\";identity|s:5:\"owner\";username|s:5:\"owner\";email|s:18:\"owner@tecdiary.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1702068820\";last_ip|s:12:\"129.56.24.93\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1702424569;register_id|s:1:\"1\";cash_in_hand|s:9:\"5000.0000\";register_open_time|s:19:\"2023-10-15 18:01:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c538fb5baf1b49573ab9901eaffe9e0ef8ce1ca0', '102.91.52.120', 1702414696, '__ci_last_regenerate|i:1702414696;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702414560;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c552c9236462e06be4cfc49c0d60d6e8e9be544f', '197.210.53.231', 1702294550, '__ci_last_regenerate|i:1702294506;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702141043\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c590ac89aa9ff206ab63027216fdec4437ba0b17', '34.229.194.43', 1702325979, '__ci_last_regenerate|i:1702325979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c637dbe235ea0744ad353d9e12c7028282f54fcc', '207.46.13.128', 1702318186, '__ci_last_regenerate|i:1702317144;requested_page|s:19:\"category/stir-fried\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c68c2fbb79e097e7dc8cc4b3442d093e4b9ece2e', '102.91.54.110', 1702400683, '__ci_last_regenerate|i:1702400683;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702399439;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c71a445278712d5b7247acacd7a41ff7078dcce7', '197.210.77.106', 1702334548, '__ci_last_regenerate|i:1702334548;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702321384\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702334241;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7815ad3e4e3c1f31d85866a4d0523cab00cd5f5', '197.210.53.231', 1702314827, '__ci_last_regenerate|i:1702314827;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702289506\";last_ip|s:14:\"197.210.53.231\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702314825;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb475d8df835cb0e3f9d67cfffb036b437071df8', '102.91.55.66', 1702400586, '__ci_last_regenerate|i:1702400586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd54788bc21ea470fde9cd6c872d78db5d784363', '207.46.13.168', 1702399317, '__ci_last_regenerate|i:1702399316;requested_page|s:14:\"category/fried\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdfb7cfed5acf757a9ff34817196fd71a9053db7', '102.91.54.110', 1702385065, '__ci_last_regenerate|i:1702385065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce6c95352c1d8acd2adec3fad7dbc202f7518c9e', '52.167.144.186', 1702351635, '__ci_last_regenerate|i:1702351635;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cef54aec0fa2d22697ee265ed1c19b9a1967baca', '52.167.144.182', 1702303787, '__ci_last_regenerate|i:1702303787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0f46a290526603dced1682fd4432f31588a7b73', '197.210.77.106', 1702329322, '__ci_last_regenerate|i:1702329322;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702321384\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702328625;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d329e21f5c64a01bfedd6a0bdfe7eb78f645366a', '216.244.66.233', 1702299625, '__ci_last_regenerate|i:1702299625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d33391228ec1bb45607c761584938552f6234fe7', '102.91.54.110', 1702395218, '__ci_last_regenerate|i:1702395218;identity|s:16:\"sethsamson122000\";username|s:16:\"sethsamson122000\";email|s:24:\"samsonjr122000@gmail.com\";user_id|s:2:\"17\";old_last_login|s:10:\"1702238832\";last_ip|s:13:\"129.56.24.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d378c502a444af62173bfd3152e9668e1d545db8', '102.91.52.147', 1702415320, 'requested_page|s:21:\"admin/sales/edit/1091\";__ci_last_regenerate|i:1702415320;identity|s:7:\"bridget\";username|s:7:\"bridget\";email|s:26:\"bridgetmatthew97@gmail.com\";user_id|s:1:\"9\";old_last_login|s:10:\"1702379671\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d43548b64001451fef266020b2e1fc78550c6b0c', '197.210.53.231', 1702295817, '__ci_last_regenerate|i:1702295817;identity|s:8:\"maxybest\";username|s:8:\"maxybest\";email|s:26:\"mercybestdickson@gmail.com\";user_id|s:2:\"18\";old_last_login|s:10:\"1702143418\";last_ip|s:13:\"129.56.24.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d46fbac8298e558de0d4f38ae3fdeebffd8cc0e6', '197.211.52.81', 1702334656, '__ci_last_regenerate|i:1702334388;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702296904\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d47ffe38f6c678f8b8a79352a94db7ae091b2c83', '197.210.52.171', 1702322014, '__ci_last_regenerate|i:1702322014;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702312891\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702321844;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4bfca1ffeed18919e086748acd52a0eae113322', '129.56.24.94', 1702334015, '__ci_last_regenerate|i:1702334015;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702296904\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d51a9219697c0598f4378aca923aab1b8ccd2b36', '102.91.52.105', 1702416391, 'requested_page|s:21:\"admin/sales/edit/1091\";__ci_last_regenerate|i:1702416391;identity|s:7:\"bridget\";username|s:7:\"bridget\";email|s:26:\"bridgetmatthew97@gmail.com\";user_id|s:1:\"9\";old_last_login|s:10:\"1702379671\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d563742851a949cff14c71ebcac47b6c0bdd9994', '173.252.87.7', 1702366032, '__ci_last_regenerate|i:1702366032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d566c4e956d6df202ce640712c6574b673f31ba1', '102.91.54.110', 1702403989, '__ci_last_regenerate|i:1702403989;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702401449;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6ed8396e2ecfe7e687a1c5a2da42ee406abf9a0', '216.244.66.233', 1702400706, '__ci_last_regenerate|i:1702400705;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d755db788dc8a8c357ef2d0690d5eccaf623b323', '40.77.167.7', 1702407937, '__ci_last_regenerate|i:1702406926;requested_page|s:19:\"category/stir-fried\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d77336a1aa3a92cf4c046796ba2afc1c47637888', '102.91.52.120', 1702413748, 'requested_page|s:21:\"admin/sales/edit/1091\";__ci_last_regenerate|i:1702413748;identity|s:7:\"bridget\";username|s:7:\"bridget\";email|s:26:\"bridgetmatthew97@gmail.com\";user_id|s:1:\"9\";old_last_login|s:10:\"1702379671\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9ceb93f82dd1b5d7ac8e7caf1d2e4771204a75e', '54.163.3.87', 1702326011, '__ci_last_regenerate|i:1702326011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da0dc682af6761375be4e04fab353cae913802a8', '207.46.13.7', 1702350563, '__ci_last_regenerate|i:1702350563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df5dc3b6150422004d3664897d41a5f140f93dd5', '102.91.52.120', 1702416622, 'requested_page|s:21:\"admin/sales/edit/1091\";__ci_last_regenerate|i:1702416391;identity|s:7:\"bridget\";username|s:7:\"bridget\";email|s:26:\"bridgetmatthew97@gmail.com\";user_id|s:1:\"9\";old_last_login|s:10:\"1702379671\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ff8cea0e3093301b568aa7f68ef6b1f0e2756f', '129.56.24.94', 1702331654, '__ci_last_regenerate|i:1702331654;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e42a49d70313e3dc97390910db84296e3c80df86', '197.210.77.13', 1702290365, '__ci_last_regenerate|i:1702290365;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702141043\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5960c027e677a58a83c62f492fb49f6a474d583', '102.91.55.226', 1702401409, '__ci_last_regenerate|i:1702401408;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702401409;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65b791c489aa2cf6e68581e8f24ef57feeba630', '102.91.54.110', 1702383214, '__ci_last_regenerate|i:1702383214;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702381690;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e68d712e2fd0dbcfb21d1eb5de6c5d819e623d0c', '216.244.66.233', 1702299288, '__ci_last_regenerate|i:1702299288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e724e1ba6928f3b763358484eb1b6363bcfb932f', '173.252.87.7', 1702366031, '__ci_last_regenerate|i:1702366031;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e73f33aa0751f100a07bfa96d7c13ffc34d06b65', '129.56.24.94', 1702329281, '__ci_last_regenerate|i:1702329281;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702296904\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e82758fc820388735ee54cd7499e4d9ed12589af', '197.210.77.106', 1702294055, '__ci_last_regenerate|i:1702294055;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702294043;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9ca83fca5ca603849d2612296eeae6609b6f7b2', '102.91.55.68', 1702416090, 'requested_page|s:21:\"admin/sales/edit/1091\";__ci_last_regenerate|i:1702416090;identity|s:7:\"bridget\";username|s:7:\"bridget\";email|s:26:\"bridgetmatthew97@gmail.com\";user_id|s:1:\"9\";old_last_login|s:10:\"1702379671\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea5d015e2b2c4b135ea10d97022daaf8c4cac601', '197.210.52.171', 1702296418, '__ci_last_regenerate|i:1702296418;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702295372;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb005d2aad5bf9a89186b788e070cfb884573d66', '129.56.24.94', 1702328208, '__ci_last_regenerate|i:1702328208;requested_page|s:15:\"admin/sales/add\";identity|s:8:\"maxybest\";username|s:8:\"maxybest\";email|s:26:\"mercybestdickson@gmail.com\";user_id|s:2:\"18\";old_last_login|s:10:\"1702294580\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebce8ca3a78def5169dab7ca120059d26285199d', '129.56.24.94', 1702330405, '__ci_last_regenerate|i:1702330405;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702296904\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed2a4a02ee285ef3067c393c6fe1742ec8d06f00', '102.91.52.105', 1702418515, '__ci_last_regenerate|i:1702418368;requested_page|s:19:\"admin/reports/sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702400616\";last_ip|s:13:\"197.211.52.81\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed8926098e410f76f9135f611290a954671d1146', '160.152.176.9', 1702424268, '__ci_last_regenerate|i:1702424268;requested_page|s:5:\"admin\";identity|s:5:\"owner\";username|s:5:\"owner\";email|s:18:\"owner@tecdiary.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1702068820\";last_ip|s:12:\"129.56.24.93\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1702424163;register_id|s:1:\"1\";cash_in_hand|s:9:\"5000.0000\";register_open_time|s:19:\"2023-10-15 18:01:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed990d75fe4533a2aa97012a47245e450c04f2a3', '102.91.55.226', 1702415597, '__ci_last_regenerate|i:1702415597;identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702408086\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1702415374;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-10-29 17:39:37\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee37b5d5ce6d158e7674cf95df1113e75870e77c', '52.167.144.222', 1702346844, '__ci_last_regenerate|i:1702346843;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee537b7046dca66e270259218fc04d84af7924e8', '197.210.77.13', 1702334796, '__ci_last_regenerate|i:1702334548;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702321384\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702334793;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec60e64e8789166d5eabe8bc42399632bdb8e32', '40.77.167.235', 1702306548, '__ci_last_regenerate|i:1702306548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef53de0deed1c348c9e1c78511a89be93c7c373d', '102.91.52.105', 1702416623, '__ci_last_regenerate|i:1702416623;identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702408086\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1702416579;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-10-29 17:39:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f001a83386aea25d2eaf5ba87139efb6446cd864', '216.244.66.233', 1702424582, '__ci_last_regenerate|i:1702424582;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0d7809ccb7d6344164b782c54cfee3d9cf7859d', '197.210.52.171', 1702293703, '__ci_last_regenerate|i:1702293703;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702293632;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f23f3d7fb29126e6378fa2421a436f8db5399efd', '102.91.52.105', 1702415001, '__ci_last_regenerate|i:1702415001;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702414751;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f316dbcd93704ea86de093b142bbaabf2c7b6093', '197.210.52.171', 1702321163, '__ci_last_regenerate|i:1702321163;identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702318261\";last_ip|s:14:\"197.210.53.231\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1702320874;register_id|s:1:\"7\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-10-29 17:39:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f51392e1d1871c98be1109b14693fe872acbc082', '197.210.77.106', 1702293429, '__ci_last_regenerate|i:1702293429;identity|s:10:\"esthermilo\";username|s:10:\"esthermilo\";email|s:21:\"miloesther4@gmail.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1702141043\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5b8b34b41a43e50724a0f7131d3df58c9677f39', '216.244.66.233', 1702424213, '__ci_last_regenerate|i:1702424213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d4bb0220a0271767b56698dfb9a237a81b1d02', '102.91.52.120', 1702385654, '__ci_last_regenerate|i:1702385654;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702383288;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad0d152331cc58a900d0e924f30c3a10ff202a7', '52.167.144.225', 1702338553, '__ci_last_regenerate|i:1702338552;requested_page|s:18:\"category/currysoup\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fafa968b4d55b0d8205253b186e445518c469874', '216.244.66.233', 1702381379, '__ci_last_regenerate|i:1702381379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb8db7532878cae444d1534a4cbe79890c64aa05', '197.211.52.81', 1702400729, '__ci_last_regenerate|i:1702400612;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:8:\"fatoom24\";username|s:8:\"fatoom24\";email|s:21:\"maxkyfatoom@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1702327733\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcb5df5d8a35937c3461f39464ddf965359ac5b0', '197.210.53.231', 1702293354, '__ci_last_regenerate|i:1702293354;requested_page|s:5:\"admin\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702158493\";last_ip|s:13:\"197.210.77.13\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702293286;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcfd4cea41774f4c9456b068a3efd33e31275288', '102.91.52.147', 1702400987, '__ci_last_regenerate|i:1702400987;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702400982;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd83779c087f1120b65b38db6838f803ce739f53', '159.203.164.214', 1702291830, '__ci_last_regenerate|i:1702291830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb3a82d61140e3d2d5792bdc123f40376007728', '102.91.52.147', 1702396816, '__ci_last_regenerate|i:1702396816;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702396629;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fddc61d7fb5efe414da83ffba2e62388f4296e42', '40.77.167.64', 1702302696, '__ci_last_regenerate|i:1702302695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe1ab4354646d8408ad569b5d02947cc7304e34f', '102.91.52.147', 1702411632, '__ci_last_regenerate|i:1702411632;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702401449;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('febe5c35f1fcd1dd705cfdf9a903faf3a5df8c59', '102.91.52.120', 1702411946, '__ci_last_regenerate|i:1702411946;requested_page|s:13:\"admin/welcome\";identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702328053\";last_ip|s:14:\"197.210.77.106\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";last_activity|i:1702411932;register_id|s:2:\"12\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-12-08 11:22:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff436be5ceee26d61b3e8d22e3d27b1b8ee6ea53', '197.210.77.106', 1702321694, '__ci_last_regenerate|i:1702321694;identity|s:13:\"mayreelishmum\";username|s:13:\"mayreelishmum\";email|s:23:\"awolopemayree@gmail.com\";user_id|s:2:\"31\";old_last_login|s:10:\"1702312891\";last_ip|s:14:\"197.210.52.171\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"6\";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:\"1\";show_price|s:1:\"1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc25869352fb8423c01a5c9d72ffeb3b42881f9', '102.91.55.66', 1702397433, '__ci_last_regenerate|i:1702397433;requested_page|s:13:\"admin/welcome\";identity|s:5:\"lydia\";username|s:5:\"lydia\";email|s:20:\"lydiaidagu@gmail.com\";user_id|s:2:\"10\";old_last_login|s:10:\"1702385065\";last_ip|s:13:\"102.91.52.103\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"1\";allow_discount|s:1:\"1\";biller_id|s:1:\"3\";company_id|N;show_cost|N;show_price|s:1:\"1\";');


#
# TABLE STRUCTURE FOR: sma_settings
#

DROP TABLE IF EXISTS `sma_settings`;

CREATE TABLE `sma_settings` (
  `setting_id` int(1) NOT NULL,
  `logo` varchar(255) NOT NULL,
  `logo2` varchar(255) NOT NULL,
  `site_name` varchar(55) NOT NULL,
  `language` varchar(20) NOT NULL,
  `default_warehouse` int(2) NOT NULL,
  `accounting_method` tinyint(4) NOT NULL DEFAULT 0,
  `default_currency` varchar(3) NOT NULL,
  `default_tax_rate` int(2) NOT NULL,
  `rows_per_page` int(2) NOT NULL,
  `version` varchar(10) NOT NULL DEFAULT '1.0',
  `default_tax_rate2` int(11) NOT NULL DEFAULT 0,
  `dateformat` int(11) NOT NULL,
  `sales_prefix` varchar(20) DEFAULT NULL,
  `quote_prefix` varchar(20) DEFAULT NULL,
  `purchase_prefix` varchar(20) DEFAULT NULL,
  `transfer_prefix` varchar(20) DEFAULT NULL,
  `delivery_prefix` varchar(20) DEFAULT NULL,
  `payment_prefix` varchar(20) DEFAULT NULL,
  `return_prefix` varchar(20) DEFAULT NULL,
  `returnp_prefix` varchar(20) DEFAULT NULL,
  `expense_prefix` varchar(20) DEFAULT NULL,
  `item_addition` tinyint(1) NOT NULL DEFAULT 0,
  `theme` varchar(20) NOT NULL,
  `product_serial` tinyint(4) NOT NULL,
  `default_discount` int(11) NOT NULL,
  `product_discount` tinyint(1) NOT NULL DEFAULT 0,
  `discount_method` tinyint(4) NOT NULL,
  `tax1` tinyint(4) NOT NULL,
  `tax2` tinyint(4) NOT NULL,
  `overselling` tinyint(1) NOT NULL DEFAULT 0,
  `restrict_user` tinyint(4) NOT NULL DEFAULT 0,
  `restrict_calendar` tinyint(4) NOT NULL DEFAULT 0,
  `timezone` varchar(100) DEFAULT NULL,
  `iwidth` int(11) NOT NULL DEFAULT 0,
  `iheight` int(11) NOT NULL,
  `twidth` int(11) NOT NULL,
  `theight` int(11) NOT NULL,
  `watermark` tinyint(1) DEFAULT NULL,
  `reg_ver` tinyint(1) DEFAULT NULL,
  `allow_reg` tinyint(1) DEFAULT NULL,
  `reg_notification` tinyint(1) DEFAULT NULL,
  `auto_reg` tinyint(1) DEFAULT NULL,
  `protocol` varchar(20) NOT NULL DEFAULT 'mail',
  `mailpath` varchar(55) DEFAULT '/usr/sbin/sendmail',
  `smtp_host` varchar(100) DEFAULT NULL,
  `smtp_user` varchar(100) DEFAULT NULL,
  `smtp_pass` varchar(255) DEFAULT NULL,
  `smtp_port` varchar(10) DEFAULT '25',
  `smtp_crypto` varchar(10) DEFAULT NULL,
  `corn` datetime DEFAULT NULL,
  `customer_group` int(11) NOT NULL,
  `default_email` varchar(100) NOT NULL,
  `mmode` tinyint(1) NOT NULL,
  `bc_fix` tinyint(4) NOT NULL DEFAULT 0,
  `auto_detect_barcode` tinyint(1) NOT NULL DEFAULT 0,
  `captcha` tinyint(1) NOT NULL DEFAULT 1,
  `reference_format` tinyint(1) NOT NULL DEFAULT 1,
  `racks` tinyint(1) DEFAULT 0,
  `attributes` tinyint(1) NOT NULL DEFAULT 0,
  `product_expiry` tinyint(1) NOT NULL DEFAULT 0,
  `decimals` tinyint(2) NOT NULL DEFAULT 2,
  `qty_decimals` tinyint(2) NOT NULL DEFAULT 2,
  `decimals_sep` varchar(2) NOT NULL DEFAULT '.',
  `thousands_sep` varchar(2) NOT NULL DEFAULT ',',
  `invoice_view` tinyint(1) DEFAULT 0,
  `default_biller` int(11) DEFAULT NULL,
  `envato_username` varchar(50) DEFAULT NULL,
  `purchase_code` varchar(100) DEFAULT NULL,
  `rtl` tinyint(1) DEFAULT 0,
  `each_spent` decimal(15,4) DEFAULT NULL,
  `ca_point` tinyint(4) DEFAULT NULL,
  `each_sale` decimal(15,4) DEFAULT NULL,
  `sa_point` tinyint(4) DEFAULT NULL,
  `update` tinyint(1) DEFAULT 0,
  `sac` tinyint(1) DEFAULT 0,
  `display_all_products` tinyint(1) DEFAULT 0,
  `display_symbol` tinyint(1) DEFAULT NULL,
  `symbol` varchar(50) DEFAULT NULL,
  `remove_expired` tinyint(1) DEFAULT 0,
  `barcode_separator` varchar(2) NOT NULL DEFAULT '-',
  `set_focus` tinyint(1) NOT NULL DEFAULT 0,
  `price_group` int(11) DEFAULT NULL,
  `barcode_img` tinyint(1) NOT NULL DEFAULT 1,
  `ppayment_prefix` varchar(20) DEFAULT 'POP',
  `disable_editing` smallint(6) DEFAULT 90,
  `qa_prefix` varchar(55) DEFAULT NULL,
  `update_cost` tinyint(1) DEFAULT NULL,
  `apis` tinyint(1) NOT NULL DEFAULT 0,
  `state` varchar(100) DEFAULT NULL,
  `pdf_lib` varchar(20) DEFAULT 'dompdf',
  `use_code_for_slug` tinyint(1) DEFAULT NULL,
  `ws_barcode_type` varchar(10) DEFAULT 'weight',
  `ws_barcode_chars` tinyint(4) DEFAULT NULL,
  `flag_chars` tinyint(4) DEFAULT NULL,
  `item_code_start` tinyint(4) DEFAULT NULL,
  `item_code_chars` tinyint(4) DEFAULT NULL,
  `price_start` tinyint(4) DEFAULT NULL,
  `price_chars` tinyint(4) DEFAULT NULL,
  `price_divide_by` int(11) DEFAULT NULL,
  `weight_start` tinyint(4) DEFAULT NULL,
  `weight_chars` tinyint(4) DEFAULT NULL,
  `weight_divide_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`setting_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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, 'logo2.png', 'logo3.png', 'Kunakorn thai restaurant', 'english', 1, 2, 'NGN', 1, 50, '3.4.47', 4, 5, 'SALE', 'QUOTE', 'PO', 'TR', 'DO', 'IPAY', 'SR', 'PR', '', 0, 'default', 1, 1, 1, 1, 1, 1, 1, 1, 0, 'Africa/Lagos', 800, 800, 150, 150, 0, 0, 0, 0, NULL, 'mail', '/usr/sbin/sendmail', 'pop.gmail.com', 'contact@sma.tecdiary.org', 'jEFTM4T63AiQ9dsidxhPKt9CIg4HQjCN58n/RW9vmdC/UDXCzRLR469ziZ0jjpFlbOg43LyoSmpJLBkcAHh0Yw==', '25', NULL, NULL, 1, 'kunakornthairestaurant@gmail.com', 0, 4, 1, 0, 2, 1, 1, 0, 2, 2, '.', ',', 0, 3, 'smartPOS', '12345678', 0, NULL, NULL, NULL, NULL, 0, 0, 0, 0, '', 0, '-', 0, 1, 1, 'POP', 90, '', 0, 0, 'AN', 'dompdf', 0, '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=utf8mb3 COLLATE=utf8mb3_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, 'KunaKorn Thai Restaurant', 'Experience the essence of Thailand at Kunakorn Thai Restaurant—where authentic flavors and warm ambiance create unforgettable dining moments.', 1, 3, 'about-us', '', '', '', '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/', '', '', 'https://instagram.com/kunakorn_thai_restaurant_?igshid=', '09136541017', 'kunakornthairestaurant@gmail.com', 'We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies.', '', '[{\"image\":\"s1.jpg\",\"link\":\"http:\\/\\/ci.dev\\/sma\\/shop\\/products\",\"caption\":\"\"},{\"image\":\"s2.jpg\",\"link\":\"\",\"caption\":\"\"},{\"image\":\"s3.jpg\",\"link\":\"\",\"caption\":\"\"},{\"link\":\"\",\"caption\":\"\"},{\"link\":\"\",\"caption\":\"\"}]', 0, '', 'envato_username', '3.4.47', 'kunakorn_logo.png', '', 0, 0, 'Menu', 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=utf8mb3 COLLATE=utf8mb3_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=utf8mb3 COLLATE=utf8mb3_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=utf8mb3 COLLATE=utf8mb3_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 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

#
# 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,
  `service_charge` 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=342 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

#
# 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=4465 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

#
# 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=utf8mb3 COLLATE=utf8mb3_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 @10%', 'VAT10', '10.0000', '1');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (3, 'Service Charge', 'SER', '10.0000', '1');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (4, 'VAT @7.5%', 'VT7.5', '7.5000', '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=utf8mb3 COLLATE=utf8mb3_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=utf8mb3 COLLATE=utf8mb3_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=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_units` (`id`, `code`, `name`, `base_unit`, `operator`, `unit_value`, `operation_value`) VALUES (1, 'QTY', 'QTY', 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=572 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (1, 1, NULL, '197.211.53.127', 'owner', '2023-10-15 15:17:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (2, 1, NULL, '160.152.98.245', 'owner', '2023-10-15 15:32:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (3, 1, NULL, '129.56.24.22', 'owner', '2023-10-15 17:07:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (4, 2, NULL, '129.56.24.22', 'Apple', '2023-10-15 18:22:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (5, 2, NULL, '129.56.24.22', 'Apple', '2023-10-15 18:24:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (6, 3, NULL, '129.56.24.22', 'Fatoom24', '2023-10-15 18:50:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (7, 1, NULL, '129.56.24.22', 'owner', '2023-10-15 19:00:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (8, 2, NULL, '129.56.24.22', 'Apple', '2023-10-15 19:01:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (9, 2, NULL, '129.56.24.22', 'Apple', '2023-10-15 19:11:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (10, 1, NULL, '160.152.144.170', 'owner', '2023-10-16 08:07:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (11, 1, NULL, '129.56.25.79', 'owner', '2023-10-16 16:34:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (12, 1, NULL, '160.152.41.85', 'owner', '2023-10-16 21:13:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (13, 1, NULL, '197.211.53.124', 'owner', '2023-10-17 10:54:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (14, 1, NULL, '197.211.63.99', 'owner', '2023-10-18 12:04:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (15, 1, NULL, '129.56.25.113', 'owner', '2023-10-18 19:02:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (16, 2, NULL, '129.56.25.113', 'Apple', '2023-10-18 19:17:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (17, 2, NULL, '129.56.25.113', 'Apple', '2023-10-18 19:18:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (18, 1, NULL, '129.56.25.113', 'owner', '2023-10-18 20:19:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (19, 1, NULL, '129.56.25.113', 'owner', '2023-10-18 20:41:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (20, 2, NULL, '129.56.25.113', 'Apple', '2023-10-18 20:43:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (21, 2, NULL, '129.56.25.113', 'Apple', '2023-10-18 21:38:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (22, 1, NULL, '129.56.25.113', 'owner', '2023-10-18 21:38:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (23, 1, NULL, '160.152.93.168', 'owner', '2023-10-19 05:36:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (24, 1, NULL, '160.152.93.168', 'owner', '2023-10-19 09:05:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (25, 1, NULL, '160.152.93.168', 'owner', '2023-10-19 10:11:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (26, 1, NULL, '160.152.93.168', 'owner', '2023-10-19 11:04:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (27, 1, NULL, '129.56.25.113', 'owner', '2023-10-19 12:40:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (28, 5, NULL, '129.56.25.113', 'kunakorn1', '2023-10-19 16:20:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (29, 7, NULL, '129.56.25.113', 'kunakorn3', '2023-10-19 16:23:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (30, 5, NULL, '129.56.25.113', 'kunakorn1', '2023-10-19 16:30:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (31, 6, NULL, '129.56.25.113', 'kunakorn2', '2023-10-19 16:46:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (32, 5, NULL, '129.56.24.125', 'kunakorn1', '2023-10-19 19:49:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (33, 7, NULL, '129.56.24.125', 'kunakorn3', '2023-10-19 21:29:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (34, 2, NULL, '129.56.24.125', 'Apple', '2023-10-20 14:36:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (35, 2, NULL, '102.91.69.185', 'Apple', '2023-10-21 11:20:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (36, 2, NULL, '102.91.71.109', 'Apple', '2023-10-21 15:52:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (37, 2, NULL, '102.91.71.71', 'Apple', '2023-10-22 11:34:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (38, 1, NULL, '102.91.69.35', 'owner', '2023-10-22 15:06:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (39, 2, NULL, '197.210.70.179', 'Apple', '2023-10-23 10:32:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (40, 1, NULL, '102.215.57.104', 'owner', '2023-10-23 15:59:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (41, 2, NULL, '129.56.24.203', 'Apple', '2023-10-24 12:30:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (42, 2, NULL, '129.56.24.203', 'Apple', '2023-10-24 19:15:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (43, 2, NULL, '129.56.24.125', 'Apple', '2023-10-25 11:47:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (44, 1, NULL, '102.215.57.104', 'owner', '2023-10-25 14:24:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (45, 2, NULL, '129.56.24.125', 'Apple', '2023-10-26 11:18:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (46, 2, NULL, '129.56.24.125', 'Apple', '2023-10-26 13:30:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (47, 2, NULL, '129.56.24.125', 'Apple', '2023-10-27 11:32:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (48, 1, NULL, '160.152.51.116', 'owner', '2023-10-28 03:22:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (49, 1, NULL, '102.91.72.212', 'owner', '2023-10-28 12:54:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (50, 2, NULL, '129.56.24.101', 'Apple', '2023-10-29 14:12:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (51, 1, NULL, '197.210.76.208', 'owner', '2023-10-29 17:35:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (52, 1, NULL, '197.210.76.208', 'Owner', '2023-10-29 17:38:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (53, 3, NULL, '197.210.76.208', 'fatoom24', '2023-10-29 17:39:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (54, 1, NULL, '160.152.3.227', 'owner', '2023-10-29 17:50:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (55, 8, NULL, '160.152.3.227', 'Sheyin ', '2023-10-29 17:57:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (56, 1, NULL, '160.152.3.227', 'owner', '2023-10-29 18:20:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (57, 8, NULL, '129.56.24.101', 'Sheyin', '2023-10-29 19:00:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (58, 8, NULL, '129.56.24.101', 'Sheyin', '2023-10-29 20:06:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (59, 1, NULL, '129.56.24.101', 'owner', '2023-10-29 20:58:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (60, 9, NULL, '197.210.53.62', 'Bridget', '2023-10-29 22:25:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (61, 10, NULL, '129.56.24.101', 'lydia', '2023-10-29 22:37:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (62, 10, NULL, '197.210.53.62', 'Lydia ', '2023-10-29 23:07:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (63, 9, NULL, '129.56.24.101', 'Bridget', '2023-10-29 23:07:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (64, 3, NULL, '197.210.76.81', 'fatoom24', '2023-10-30 11:49:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (65, 2, NULL, '197.210.76.14', 'Apple', '2023-10-31 11:43:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (66, 2, NULL, '197.210.53.205', 'Apple', '2023-10-31 14:49:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (67, 2, NULL, '197.210.76.23', 'Apple', '2023-10-31 18:59:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (68, 9, NULL, '160.152.154.101', 'Bridget', '2023-10-31 19:47:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (69, 10, NULL, '129.56.24.49', 'lydia ', '2023-10-31 20:03:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (70, 1, NULL, '160.152.154.101', 'owner', '2023-10-31 20:06:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (71, 10, NULL, '129.56.24.49', 'lydia ', '2023-10-31 20:08:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (72, 9, NULL, '160.152.154.101', 'Bridget', '2023-10-31 20:10:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (73, 9, NULL, '160.152.154.101', 'Bridget', '2023-10-31 20:12:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (74, 1, NULL, '160.152.154.101', 'owner', '2023-10-31 20:26:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (75, 9, NULL, '160.152.154.101', 'Bridget ', '2023-10-31 20:53:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (76, 10, NULL, '129.56.24.49', 'lydia ', '2023-10-31 21:12:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (77, 10, NULL, '129.56.24.49', 'lydia', '2023-10-31 21:23:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (78, 10, NULL, '129.56.24.49', 'Lydia ', '2023-10-31 21:34:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (79, 2, NULL, '197.210.52.205', 'Apple', '2023-10-31 21:40:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (80, 2, NULL, '197.210.76.217', 'Apple', '2023-10-31 21:43:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (81, 10, NULL, '129.56.24.49', 'Lydia ', '2023-10-31 21:46:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (82, 9, NULL, '129.56.24.49', 'Bridget', '2023-10-31 21:48:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (83, 2, NULL, '197.210.77.194', 'Apple', '2023-11-01 11:26:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (84, 1, NULL, '160.119.124.200', 'owner', '2023-11-01 12:35:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (85, 1, NULL, '129.56.24.119', 'owner', '2023-11-01 19:02:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (86, 11, NULL, '129.56.24.119', 'esthermilo', '2023-11-01 19:07:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (87, 11, NULL, '129.56.24.119', 'esthermilo ', '2023-11-01 19:15:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (88, 11, NULL, '129.56.24.119', 'esthermilo ', '2023-11-01 19:25:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (89, 11, NULL, '129.56.24.119', 'esthermilo ', '2023-11-01 19:41:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (90, 8, NULL, '129.56.24.119', 'Sheyin ', '2023-11-01 19:51:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (91, 11, NULL, '129.56.24.119', 'esthermilo ', '2023-11-01 20:23:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (92, 11, NULL, '129.56.24.119', 'esthermilo ', '2023-11-01 20:42:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (93, 8, NULL, '129.56.24.119', 'Sheyin ', '2023-11-01 20:45:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (94, 12, NULL, '129.56.24.119', 'johnogu', '2023-11-01 21:05:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (95, 3, NULL, '197.210.52.121', 'fatoom24', '2023-11-02 11:16:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (96, 8, NULL, '197.210.77.194', 'Sheyin ', '2023-11-02 12:43:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (97, 11, NULL, '197.210.76.217', 'esthermilo ', '2023-11-03 12:30:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (98, 2, NULL, '197.210.77.197', 'Apple', '2023-11-03 13:03:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (99, 11, NULL, '197.210.77.197', 'esthermilo ', '2023-11-03 13:19:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (100, 8, NULL, '129.56.24.201', 'Sheyin ', '2023-11-03 13:37:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (101, 11, NULL, '129.56.24.201', 'esthermilo', '2023-11-03 13:39:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (102, 9, NULL, '129.56.24.201', 'Bridget', '2023-11-03 13:41:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (103, 11, NULL, '129.56.24.201', 'esthermilo ', '2023-11-03 13:55:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (104, 8, NULL, '129.56.24.201', 'Sheyin ', '2023-11-03 13:58:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (105, 11, NULL, '129.56.24.201', 'esthermilo ', '2023-11-03 14:01:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (106, 11, NULL, '129.56.24.201', 'esthermilo', '2023-11-03 14:27:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (107, 8, NULL, '129.56.24.201', 'Sheyin ', '2023-11-03 14:32:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (108, 8, NULL, '129.56.24.201', 'Sheyin', '2023-11-03 14:33:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (109, 8, NULL, '129.56.24.201', 'Sheyin', '2023-11-03 14:57:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (110, 8, NULL, '197.210.52.89', 'Sheyin ', '2023-11-03 15:47:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (111, 9, NULL, '129.56.24.201', 'Bridget', '2023-11-03 16:04:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (112, 2, NULL, '197.210.53.49', 'Apple', '2023-11-04 11:14:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (113, 1, NULL, '129.56.24.216', 'owner', '2023-11-04 17:06:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (114, 1, NULL, '129.56.24.216', 'owner', '2023-11-04 17:09:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (115, 1, NULL, '129.56.24.216', 'owner', '2023-11-04 17:11:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (116, 8, NULL, '129.56.24.216', 'Sheyin ', '2023-11-04 17:11:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (117, 10, NULL, '129.56.24.216', 'lydia ', '2023-11-04 17:16:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (118, 10, NULL, '129.56.24.216', 'lydia ', '2023-11-04 17:32:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (119, 8, NULL, '129.56.24.216', 'Sheyin ', '2023-11-04 17:35:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (120, 1, NULL, '160.152.145.146', 'owner', '2023-11-04 17:37:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (121, 8, NULL, '129.56.24.216', 'Sheyin ', '2023-11-04 17:44:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (122, 8, NULL, '129.56.24.216', 'Sheyin ', '2023-11-04 17:53:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (123, 1, NULL, '129.56.24.216', 'owner', '2023-11-05 11:31:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (124, 1, NULL, '129.56.24.216', 'owner', '2023-11-05 11:53:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (125, 11, NULL, '129.56.24.216', 'esthermilo', '2023-11-05 12:16:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (126, 8, NULL, '129.56.24.216', 'Sheyin', '2023-11-05 12:16:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (127, 9, NULL, '129.56.24.216', 'Bridget', '2023-11-05 12:17:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (128, 3, NULL, '197.210.76.217', 'fatoom24', '2023-11-05 12:56:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (129, 9, NULL, '129.56.24.216', 'Bridget', '2023-11-05 13:09:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (130, 11, NULL, '129.56.24.216', 'esthermilo', '2023-11-05 13:16:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (131, 11, NULL, '129.56.24.216', 'esthermilo ', '2023-11-05 13:27:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (132, 9, NULL, '129.56.24.216', 'Bridget', '2023-11-05 13:46:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (133, 9, NULL, '129.56.24.216', 'Bridget', '2023-11-05 13:52:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (134, 9, NULL, '129.56.24.216', 'Bridget', '2023-11-05 13:55:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (135, 9, NULL, '129.56.24.216', 'Bridget', '2023-11-05 13:58:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (136, 9, NULL, '129.56.24.216', 'Bridget', '2023-11-05 14:05:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (137, 9, NULL, '129.56.24.216', 'Bridget', '2023-11-05 14:18:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (138, 9, NULL, '129.56.24.216', 'Bridget', '2023-11-05 14:20:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (139, 9, NULL, '129.56.24.216', 'Bridget', '2023-11-05 14:33:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (140, 9, NULL, '129.56.24.216', 'Bridget', '2023-11-05 14:49:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (141, 8, NULL, '129.56.24.216', 'Sheyin', '2023-11-05 15:17:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (142, 9, NULL, '129.56.24.216', 'Bridget', '2023-11-05 15:20:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (143, 9, NULL, '129.56.25.110', 'Bridget', '2023-11-05 19:20:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (144, 9, NULL, '129.56.25.110', 'Bridget', '2023-11-05 19:25:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (145, 9, NULL, '129.56.25.110', 'Bridget', '2023-11-05 19:31:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (146, 9, NULL, '129.56.25.110', 'Bridget', '2023-11-05 19:32:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (147, 11, NULL, '129.56.25.110', 'esthermilo', '2023-11-05 19:38:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (148, 11, NULL, '129.56.25.110', 'esthermilo ', '2023-11-05 19:46:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (149, 10, NULL, '197.210.77.197', 'Lydia ', '2023-11-06 13:30:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (150, 2, NULL, '197.210.52.109', 'Apple', '2023-11-06 13:44:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (151, 10, NULL, '129.56.25.160', 'lydia ', '2023-11-06 14:29:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (152, 1, NULL, '197.211.52.85', 'owner', '2023-11-06 14:45:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (153, 1, NULL, '197.211.52.85', 'owner', '2023-11-06 15:04:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (154, 10, NULL, '197.210.227.228', 'lydia ', '2023-11-06 16:32:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (155, 1, NULL, '102.215.57.77', 'owner', '2023-11-06 16:48:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (156, 1, NULL, '160.152.186.202', 'owner', '2023-11-06 18:18:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (157, 10, NULL, '197.210.227.209', 'lydia ', '2023-11-06 18:49:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (158, 9, NULL, '129.56.25.160', 'Bridget', '2023-11-06 18:56:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (159, 1, NULL, '160.152.186.202', 'owner', '2023-11-06 19:18:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (160, 10, NULL, '129.56.25.160', 'lydia', '2023-11-06 19:25:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (161, 10, NULL, '129.56.25.160', 'lydia', '2023-11-06 19:26:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (162, 8, NULL, '197.210.54.117', 'Sheyin', '2023-11-07 12:31:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (163, 8, NULL, '129.56.25.135', 'Sheyin', '2023-11-07 13:41:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (164, 2, NULL, '197.210.54.148', 'Apple', '2023-11-07 13:44:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (165, 11, NULL, '197.210.226.118', 'esthermilo ', '2023-11-07 15:16:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (166, 8, NULL, '129.56.25.135', 'Sheyin', '2023-11-07 16:30:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (167, 11, NULL, '197.210.55.28', 'esthermilo ', '2023-11-07 17:16:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (168, 8, NULL, '197.210.227.228', 'Sheyin', '2023-11-07 17:31:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (169, 8, NULL, '129.56.25.135', 'Sheyin', '2023-11-07 17:54:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (170, 8, NULL, '129.56.25.135', 'Sheyin', '2023-11-07 18:11:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (171, 8, NULL, '197.210.54.117', 'Sheyin', '2023-11-07 18:25:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (172, 2, NULL, '197.210.227.233', 'Apple', '2023-11-08 11:23:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (173, 9, NULL, '197.210.54.148', 'Bridget', '2023-11-08 11:57:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (174, 1, NULL, '102.215.57.32', 'owner', '2023-11-08 14:20:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (175, 9, NULL, '197.210.55.28', 'Bridget', '2023-11-08 19:22:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (176, 3, NULL, '197.210.227.233', 'fatoom24', '2023-11-09 12:38:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (177, 8, NULL, '197.210.55.66', 'Sheyin', '2023-11-09 12:52:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (178, 11, NULL, '197.210.55.12', 'esthermilo ', '2023-11-09 12:52:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (179, 8, NULL, '129.56.24.29', 'Sheyin', '2023-11-09 20:38:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (180, 8, NULL, '129.56.24.29', 'Sheyin', '2023-11-09 22:31:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (181, 8, NULL, '197.210.55.66', 'Sheyin', '2023-11-09 23:04:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (182, 3, NULL, '197.210.227.135', 'fatoom24', '2023-11-10 11:46:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (183, 10, NULL, '197.210.227.135', 'Lydia ', '2023-11-10 14:15:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (184, 2, NULL, '197.210.55.28', 'Apple', '2023-11-10 14:50:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (185, 8, NULL, '129.56.24.29', 'Sheyin', '2023-11-10 14:53:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (186, 9, NULL, '197.210.55.28', 'Bridget', '2023-11-10 16:16:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (187, 10, NULL, '197.210.70.220', 'Lydia ', '2023-11-10 17:51:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (188, 9, NULL, '129.56.24.29', 'Bridget', '2023-11-10 17:51:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (189, 10, NULL, '197.210.70.149', 'Lydia ', '2023-11-10 17:54:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (190, 9, NULL, '129.56.24.29', 'Bridget', '2023-11-10 18:22:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (191, 10, NULL, '129.56.24.29', 'lydia', '2023-11-10 18:31:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (192, 10, NULL, '102.91.4.31', 'Lydia ', '2023-11-10 18:38:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (193, 8, NULL, '129.56.24.29', 'Sheyin', '2023-11-10 18:40:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (194, 10, NULL, '197.210.70.220', 'Lydia ', '2023-11-10 19:41:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (195, 1, NULL, '160.152.165.33', 'owner', '2023-11-10 19:42:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (196, 9, NULL, '129.56.24.29', 'Bridget', '2023-11-10 20:59:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (197, 8, NULL, '129.56.24.29', 'Sheyin', '2023-11-10 21:01:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (198, 9, NULL, '129.56.24.29', 'Bridget', '2023-11-10 21:05:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (199, 10, NULL, '129.56.24.29', 'lydia ', '2023-11-10 21:20:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (200, 10, NULL, '102.91.4.143', 'Lydia ', '2023-11-10 22:41:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (201, 2, NULL, '102.91.55.48', 'Apple', '2023-11-11 12:58:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (202, 11, NULL, '197.210.71.74', 'esthermilo ', '2023-11-11 13:41:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (203, 1, NULL, '129.56.24.26', 'owner', '2023-11-11 14:21:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (204, 8, NULL, '102.91.4.2', 'Sheyin', '2023-11-11 15:38:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (205, 11, NULL, '129.56.24.26', 'esthermilo ', '2023-11-11 15:54:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (206, 9, NULL, '197.210.77.87', 'Bridget', '2023-11-12 11:31:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (207, 9, NULL, '197.210.77.87', 'Bridget', '2023-11-12 11:31:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (208, 2, NULL, '129.56.24.109', 'Apple', '2023-11-12 11:41:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (209, 10, NULL, '129.56.24.109', 'lydia', '2023-11-12 11:58:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (210, 9, NULL, '197.210.52.133', 'Bridget', '2023-11-12 13:04:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (211, 1, NULL, '129.56.24.109', 'owner', '2023-11-12 14:31:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (212, 2, NULL, '197.210.52.133', 'Apple', '2023-11-12 16:09:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (213, 9, NULL, '129.56.24.109', 'Bridget', '2023-11-12 16:14:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (214, 1, NULL, '197.210.53.218', 'owner', '2023-11-12 16:16:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (215, 8, NULL, '129.56.24.109', 'Sheyin', '2023-11-12 16:52:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (216, 9, NULL, '197.210.77.144', 'Bridget', '2023-11-12 17:36:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (217, 10, NULL, '102.91.49.62', 'Lydia ', '2023-11-12 17:58:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (218, 9, NULL, '129.56.24.109', 'Bridget', '2023-11-12 18:18:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (219, 10, NULL, '129.56.24.109', 'lydia', '2023-11-12 19:24:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (220, 9, NULL, '129.56.24.109', 'Bridget', '2023-11-12 19:58:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (221, 1, NULL, '160.152.143.225', 'owner', '2023-11-13 04:18:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (222, 2, NULL, '197.210.76.50', 'Apple', '2023-11-13 10:59:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (223, 11, NULL, '197.210.52.133', 'esthermilo ', '2023-11-13 11:43:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (224, 8, NULL, '197.210.52.69', 'Sheyin', '2023-11-13 11:57:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (225, 8, NULL, '129.56.25.193', 'Sheyin', '2023-11-13 15:07:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (226, 11, NULL, '129.56.25.193', 'esthermilo ', '2023-11-13 17:41:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (227, 8, NULL, '129.56.25.193', 'Sheyin', '2023-11-13 18:28:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (228, 11, NULL, '129.56.25.193', 'esthermilo ', '2023-11-13 22:53:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (229, 8, NULL, '102.91.5.173', 'Sheyin', '2023-11-14 11:19:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (230, 2, NULL, '102.91.5.10', 'Apple', '2023-11-14 11:31:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (231, 10, NULL, '102.91.70.178', 'Lydia ', '2023-11-14 11:57:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (232, 9, NULL, '129.56.25.193', 'Bridget', '2023-11-14 12:13:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (233, 9, NULL, '102.91.70.178', 'Bridget', '2023-11-14 12:18:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (234, 9, NULL, '197.210.53.104', 'Bridget', '2023-11-14 12:24:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (235, 10, NULL, '197.210.53.104', 'Lydia ', '2023-11-14 12:26:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (236, 9, NULL, '129.56.25.193', 'Bridget', '2023-11-14 12:42:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (237, 8, NULL, '197.210.76.171', 'Sheyin', '2023-11-14 12:44:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (238, 10, NULL, '129.56.25.193', 'Lydia ', '2023-11-14 12:47:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (239, 10, NULL, '129.56.25.193', 'lydia', '2023-11-14 13:28:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (240, 10, NULL, '129.56.25.193', 'lydia ', '2023-11-14 13:30:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (241, 10, NULL, '129.56.25.193', 'lydia ', '2023-11-14 13:31:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (242, 9, NULL, '129.56.25.193', 'Bridget', '2023-11-14 13:33:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (243, 9, NULL, '129.56.25.193', 'Bridget', '2023-11-14 13:45:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (244, 10, NULL, '197.210.76.117', 'Lydia ', '2023-11-14 13:48:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (245, 1, NULL, '102.215.57.104', 'owner', '2023-11-14 17:00:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (246, 10, NULL, '197.210.70.213', 'Lydia ', '2023-11-14 18:20:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (247, 9, NULL, '129.56.25.193', 'Bridget', '2023-11-14 18:36:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (248, 3, NULL, '197.210.70.82', 'fatoom24', '2023-11-14 18:41:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (249, 9, NULL, '129.56.25.193', 'Bridget', '2023-11-14 18:51:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (250, 9, NULL, '129.56.25.193', 'Bridget', '2023-11-14 19:08:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (251, 9, NULL, '129.56.25.193', 'Bridget', '2023-11-14 19:58:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (252, 9, NULL, '129.56.25.193', 'Bridget', '2023-11-14 20:17:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (253, 8, NULL, '129.56.25.193', 'Sheyin', '2023-11-14 20:34:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (254, 10, NULL, '129.56.25.193', 'Lydia ', '2023-11-14 20:56:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (255, 10, NULL, '129.56.25.193', 'Lydia ', '2023-11-14 20:56:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (256, 8, NULL, '129.56.25.193', 'Sheyin', '2023-11-14 21:05:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (257, 8, NULL, '102.91.5.169', 'Sheyin', '2023-11-15 11:43:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (258, 11, NULL, '197.210.70.213', 'esthermilo ', '2023-11-15 11:43:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (259, 2, NULL, '102.91.5.73', 'Apple', '2023-11-15 12:27:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (260, 8, NULL, '102.91.4.202', 'Sheyin', '2023-11-15 17:04:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (261, 11, NULL, '102.91.4.202', 'esthermilo ', '2023-11-15 17:46:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (262, 8, NULL, '129.56.25.8', 'Sheyin', '2023-11-15 19:13:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (263, 8, NULL, '129.56.25.8', 'Sheyin', '2023-11-15 21:59:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (264, 11, NULL, '129.56.25.8', 'esthermilo ', '2023-11-15 21:59:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (265, 3, NULL, '197.210.53.67', 'fatoom24', '2023-11-16 14:35:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (266, 9, NULL, '197.210.53.10', 'Bridget', '2023-11-16 16:49:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (267, 3, NULL, '197.210.53.10', 'fatoom24', '2023-11-16 19:16:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (268, 9, NULL, '197.210.53.10', 'Bridget', '2023-11-16 19:17:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (269, 10, NULL, '129.56.24.229', 'Lydia ', '2023-11-16 19:18:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (270, 10, NULL, '129.56.24.229', 'lydia', '2023-11-16 19:39:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (271, 9, NULL, '129.56.24.229', 'Bridget', '2023-11-16 19:52:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (272, 10, NULL, '129.56.25.176', 'Lydia ', '2023-11-16 20:40:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (273, 9, NULL, '129.56.25.176', 'Bridget', '2023-11-16 21:20:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (274, 11, NULL, '197.210.70.78', 'esthermilo ', '2023-11-17 13:19:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (275, 8, NULL, '102.91.69.192', 'Sheyin', '2023-11-17 13:19:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (276, 2, NULL, '102.91.69.66', 'Apple', '2023-11-17 13:39:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (277, 11, NULL, '102.91.5.10', 'esthermilo ', '2023-11-17 16:57:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (278, 2, NULL, '197.210.76.102', 'Apple', '2023-11-17 17:06:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (279, 10, NULL, '102.91.71.158', 'Lydia ', '2023-11-18 12:14:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (280, 9, NULL, '197.210.52.208', 'Bridget', '2023-11-18 13:18:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (281, 3, NULL, '197.210.76.216', 'fatoom24', '2023-11-18 14:05:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (282, 10, NULL, '197.210.52.208', 'Lydia ', '2023-11-18 17:29:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (283, 10, NULL, '197.210.77.132', 'lydia ', '2023-11-18 19:08:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (284, 1, NULL, '129.56.25.34', 'owner', '2023-11-18 19:16:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (285, 9, NULL, '197.210.77.132', 'Bridget', '2023-11-18 19:27:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (286, 10, NULL, '129.56.25.34', 'lydia', '2023-11-18 22:16:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (287, 3, NULL, '197.210.52.71', 'fatoom24', '2023-11-19 12:49:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (288, 11, NULL, '197.210.77.132', 'esthermilo ', '2023-11-19 13:42:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (289, 8, NULL, '129.56.24.127', 'Sheyin', '2023-11-19 13:51:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (290, 8, NULL, '129.56.24.127', 'Sheyin', '2023-11-19 17:23:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (291, 9, NULL, '129.56.24.186', 'Bridget', '2023-11-20 14:40:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (292, 3, NULL, '197.210.77.99', 'fatoom24', '2023-11-20 15:04:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (293, 10, NULL, '197.210.52.208', 'Lydia ', '2023-11-20 15:19:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (294, 10, NULL, '129.56.24.186', 'Lydia ', '2023-11-20 15:45:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (295, 1, NULL, '102.215.57.77', 'owner', '2023-11-20 17:42:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (296, 10, NULL, '129.56.24.186', 'Lydia ', '2023-11-20 18:39:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (297, 9, NULL, '129.56.24.186', 'Bridget', '2023-11-20 18:45:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (298, 10, NULL, '129.56.24.186', 'Lydia ', '2023-11-20 18:48:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (299, 10, NULL, '129.56.24.186', 'lydia ', '2023-11-20 19:01:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (300, 9, NULL, '129.56.24.186', 'Bridget', '2023-11-20 19:04:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (301, 9, NULL, '129.56.24.186', 'Bridget', '2023-11-20 19:26:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (302, 9, NULL, '129.56.24.186', 'Bridget', '2023-11-20 21:07:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (303, 9, NULL, '129.56.24.186', 'Bridget', '2023-11-20 21:10:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (304, 3, NULL, '197.210.53.205', 'fatoom24', '2023-11-21 12:42:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (305, 11, NULL, '197.210.52.161', 'esthermilo ', '2023-11-21 13:05:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (306, 8, NULL, '197.210.53.86', 'Sheyin', '2023-11-21 15:07:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (307, 1, NULL, '102.215.57.104', 'owner', '2023-11-21 15:39:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (308, 2, NULL, '197.210.76.51', 'Apple', '2023-11-21 16:48:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (309, 1, NULL, '102.215.57.104', 'owner', '2023-11-21 17:15:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (310, 1, NULL, '102.215.57.32', 'owner', '2023-11-22 13:26:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (311, 2, NULL, '102.90.45.140', 'Apple', '2023-11-22 13:33:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (312, 10, NULL, '197.210.76.243', 'Lydia ', '2023-11-22 14:29:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (313, 10, NULL, '197.210.76.243', 'Lydia ', '2023-11-22 14:31:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (314, 9, NULL, '102.91.49.93', 'Bridget', '2023-11-22 15:37:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (315, 1, NULL, '160.152.44.1', 'owner', '2023-11-22 18:42:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (316, 17, NULL, '160.152.44.1', 'Sethsamson122000', '2023-11-22 18:46:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (317, 17, NULL, '160.152.44.1', 'Sethsamson122000', '2023-11-22 19:01:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (318, 17, NULL, '160.152.44.1', 'Sethsamson122000', '2023-11-22 19:05:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (319, 10, NULL, '102.91.4.236', 'Lydia ', '2023-11-22 19:27:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (320, 9, NULL, '102.91.69.138', 'Bridget', '2023-11-22 20:09:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (321, 8, NULL, '129.56.24.82', 'Sheyin ', '2023-11-22 20:22:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (322, 10, NULL, '129.56.24.82', 'Lydia ', '2023-11-22 20:33:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (323, 8, NULL, '197.210.71.55', 'Sheyin', '2023-11-22 20:39:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (324, 8, NULL, '102.91.70.188', 'Sheyin ', '2023-11-22 20:49:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (325, 9, NULL, '197.210.70.55', 'Bridget', '2023-11-22 20:55:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (326, 2, NULL, '197.210.53.83', 'Apple', '2023-11-23 11:56:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (327, 11, NULL, '102.91.69.61', 'esthermilo ', '2023-11-23 12:00:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (328, 1, NULL, '102.215.57.75', 'owner', '2023-11-23 12:07:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (329, 11, NULL, '102.91.69.161', 'esthermilo ', '2023-11-23 14:08:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (330, 1, NULL, '102.215.57.75', 'owner', '2023-11-23 14:24:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (331, 8, NULL, '197.210.53.238', 'Sheyin', '2023-11-23 15:27:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (332, 1, NULL, '102.215.57.75', 'owner', '2023-11-23 15:51:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (333, 8, NULL, '129.56.24.39', 'Sheyin', '2023-11-23 17:58:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (334, 1, NULL, '160.152.85.79', 'owner', '2023-11-23 18:51:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (335, 18, NULL, '129.56.24.39', 'Maxybest', '2023-11-23 19:01:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (336, 1, NULL, '160.152.85.79', 'owner', '2023-11-23 21:17:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (337, 18, NULL, '129.56.24.39', 'Maxybest ', '2023-11-23 21:27:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (338, 18, NULL, '129.56.24.39', 'Maxybest ', '2023-11-23 22:21:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (339, 1, NULL, '169.159.80.65', 'owner', '2023-11-24 06:53:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (340, 2, NULL, '102.91.69.196', 'Apple', '2023-11-24 11:27:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (341, 8, NULL, '129.56.24.39', 'Sheyin ', '2023-11-24 12:16:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (342, 8, NULL, '102.91.70.188', 'Sheyin ', '2023-11-24 15:55:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (343, 1, NULL, '102.215.57.104', 'owner', '2023-11-24 16:58:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (344, 10, NULL, '197.210.76.117', 'lydia', '2023-11-24 17:33:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (345, 9, NULL, '102.91.69.196', 'Bridget', '2023-11-24 19:07:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (346, 10, NULL, '197.210.53.218', 'Lydia ', '2023-11-24 19:19:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (347, 8, NULL, '197.210.76.226', 'Sheyin', '2023-11-24 19:27:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (348, 17, NULL, '197.210.76.226', 'Sethsamson122000', '2023-11-24 19:35:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (349, 10, NULL, '197.210.76.226', 'Lydia ', '2023-11-24 19:36:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (350, 17, NULL, '129.56.24.160', 'Sethsamson122000', '2023-11-24 19:39:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (351, 17, NULL, '129.56.24.160', 'Sethsamson122000', '2023-11-24 19:40:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (352, 17, NULL, '129.56.24.160', 'Sethsamson122000', '2023-11-24 19:59:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (353, 1, NULL, '129.56.24.160', 'owner', '2023-11-24 20:11:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (354, 1, NULL, '129.56.24.160', 'owner', '2023-11-24 20:12:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (355, 10, NULL, '129.56.24.160', 'lydia', '2023-11-24 20:12:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (356, 17, NULL, '102.91.69.135', 'Sethsamson122000', '2023-11-24 20:30:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (357, 9, NULL, '102.91.69.61', 'Bridget', '2023-11-24 21:05:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (358, 17, NULL, '129.56.24.160', 'Sethsamson122000', '2023-11-24 21:42:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (359, 10, NULL, '129.56.24.160', 'lydia ', '2023-11-24 22:07:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (360, 17, NULL, '129.56.24.160', 'Sethsamson122000', '2023-11-24 22:14:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (361, 9, NULL, '129.56.24.160', 'Bridget', '2023-11-24 22:26:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (362, 2, NULL, '102.91.70.188', 'Apple', '2023-11-25 11:02:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (363, 8, NULL, '102.91.69.192', 'Sheyin', '2023-11-25 12:02:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (364, 11, NULL, '102.91.70.14', 'esthermilo ', '2023-11-25 12:17:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (365, 18, NULL, '129.56.24.160', 'Maxybest ', '2023-11-25 12:23:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (366, 18, NULL, '129.56.24.160', 'Maxybest ', '2023-11-25 14:45:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (367, 11, NULL, '197.210.53.64', 'esthermilo ', '2023-11-25 15:15:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (368, 2, NULL, '197.210.53.64', 'Apple', '2023-11-25 19:36:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (369, 11, NULL, '129.56.25.39', 'esthermilo ', '2023-11-25 20:01:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (370, 8, NULL, '129.56.25.39', 'Sheyin ', '2023-11-25 20:44:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (371, 8, NULL, '129.56.25.39', 'Sheyin ', '2023-11-25 20:48:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (372, 8, NULL, '129.56.25.39', 'Sheyin', '2023-11-25 20:59:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (373, 3, NULL, '102.91.46.9', 'Fatoom24', '2023-11-26 00:19:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (374, 2, NULL, '197.210.76.213', 'Apple', '2023-11-26 10:28:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (375, 8, NULL, '197.210.77.32', 'Sheyin', '2023-11-26 12:42:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (376, 10, NULL, '102.91.69.174', 'lydia', '2023-11-26 14:19:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (377, 9, NULL, '102.91.72.115', 'Bridget', '2023-11-26 14:36:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (378, 10, NULL, '102.91.72.115', 'Lydia ', '2023-11-26 14:45:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (379, 9, NULL, '102.91.70.188', 'Bridget', '2023-11-26 14:52:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (380, 17, NULL, '102.91.72.186', 'Sethsamson122000', '2023-11-26 14:52:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (381, 10, NULL, '102.91.69.174', 'Lydia ', '2023-11-26 15:05:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (382, 17, NULL, '129.56.24.19', 'Sethsamson122000', '2023-11-26 16:31:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (383, 9, NULL, '102.91.69.61', 'Bridget', '2023-11-26 17:24:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (384, 17, NULL, '102.91.69.61', 'Sethsamson122000', '2023-11-26 18:29:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (385, 10, NULL, '197.210.52.10', 'lydia ', '2023-11-26 20:08:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (386, 17, NULL, '102.91.71.23', 'Sethsamson122000', '2023-11-26 20:23:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (387, 17, NULL, '197.210.76.25', 'Sethsamson122000', '2023-11-26 20:23:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (388, 8, NULL, '102.91.71.188', 'Sheyin ', '2023-11-26 20:48:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (389, 10, NULL, '197.210.76.206', 'lydia', '2023-11-26 21:35:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (390, 17, NULL, '102.91.71.177', 'Sethsamson122000', '2023-11-26 22:09:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (391, 11, NULL, '197.210.77.198', 'esthermilo ', '2023-11-27 11:37:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (392, 2, NULL, '197.210.52.76', 'Apple', '2023-11-27 12:34:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (393, 18, NULL, '129.56.24.224', 'Maxybest ', '2023-11-27 13:38:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (394, 11, NULL, '197.210.53.117', 'esthermilo ', '2023-11-27 16:49:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (395, 10, NULL, '197.210.76.193', 'lydia ', '2023-11-28 13:24:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (396, 10, NULL, '129.56.25.130', 'lydia', '2023-11-28 13:55:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (397, 2, NULL, '197.210.76.46', 'Apple', '2023-11-28 13:58:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (398, 10, NULL, '129.56.25.130', 'lydia', '2023-11-28 16:29:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (399, 9, NULL, '197.210.77.198', 'Bridget', '2023-11-28 18:06:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (400, 17, NULL, '197.210.53.120', 'Sethsamson122000', '2023-11-28 19:04:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (401, 9, NULL, '129.56.25.130', 'Bridget', '2023-11-28 20:07:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (402, 10, NULL, '129.56.25.130', 'Lydia ', '2023-11-28 22:28:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (403, 2, NULL, '197.210.53.120', 'Apple', '2023-11-28 22:32:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (404, 10, NULL, '197.210.76.46', 'Lydia ', '2023-11-28 22:45:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (405, 3, NULL, '102.91.70.143', 'Fatoom24', '2023-11-28 23:42:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (406, 3, NULL, '102.91.54.221', 'Fatoom24', '2023-11-29 10:40:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (407, 2, NULL, '129.56.25.130', 'Apple', '2023-11-29 12:39:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (408, 11, NULL, '102.91.4.33', 'esthermilo ', '2023-11-29 13:45:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (409, 11, NULL, '197.210.70.61', 'esthermilo ', '2023-11-29 17:32:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (410, 18, NULL, '102.91.72.118', 'Maxybest ', '2023-11-29 17:51:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (411, 3, NULL, '102.91.4.33', 'fatoom24', '2023-11-29 18:05:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (412, 2, NULL, '129.56.24.44', 'Apple', '2023-11-30 09:59:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (413, 8, NULL, '129.56.24.44', 'Sheyin ', '2023-11-30 12:05:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (414, 8, NULL, '129.56.24.44', 'Sheyin', '2023-11-30 12:09:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (415, 3, NULL, '129.56.24.44', 'fatoom24', '2023-11-30 16:24:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (416, 9, NULL, '129.56.24.44', 'Bridget', '2023-11-30 18:49:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (417, 10, NULL, '129.56.24.44', 'lydia', '2023-11-30 19:10:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (418, 9, NULL, '129.56.24.44', 'Bridget', '2023-11-30 19:30:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (419, 8, NULL, '129.56.24.44', 'Sheyin ', '2023-11-30 19:31:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (420, 17, NULL, '129.56.24.44', 'Sethsamson122000', '2023-11-30 19:31:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (421, 17, NULL, '129.56.24.44', 'Sethsamson122000', '2023-11-30 19:36:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (422, 10, NULL, '129.56.24.44', 'lydia', '2023-11-30 20:07:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (423, 9, NULL, '129.56.24.44', 'Bridget', '2023-11-30 20:14:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (424, 10, NULL, '129.56.24.44', 'lydia', '2023-11-30 20:21:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (425, 2, NULL, '102.91.54.84', 'Apple', '2023-12-01 12:09:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (426, 18, NULL, '102.91.52.57', 'Maxybest ', '2023-12-01 14:03:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (427, 11, NULL, '102.91.54.84', 'esthermilo ', '2023-12-01 14:03:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (428, 2, NULL, '102.91.52.57', 'Apple', '2023-12-01 14:11:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (429, 8, NULL, '129.56.24.44', 'Sheyin ', '2023-12-01 14:40:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (430, 2, NULL, '102.91.54.84', 'Apple', '2023-12-01 17:36:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (431, 18, NULL, '129.56.24.209', 'Maxybest ', '2023-12-01 18:00:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (432, 11, NULL, '129.56.24.209', 'esthermilo ', '2023-12-01 18:40:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (433, 2, NULL, '102.91.4.219', 'Apple', '2023-12-02 11:10:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (434, 10, NULL, '102.91.4.226', 'lydia ', '2023-12-02 11:56:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (435, 2, NULL, '197.210.71.246', 'Apple', '2023-12-02 15:35:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (436, 10, NULL, '129.56.24.85', 'lydia ', '2023-12-02 17:19:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (437, 8, NULL, '129.56.24.85', 'Sheyin', '2023-12-02 18:09:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (438, 9, NULL, '129.56.24.85', 'Bridget', '2023-12-02 19:46:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (439, 10, NULL, '129.56.24.85', 'lydia', '2023-12-02 21:28:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (440, 3, NULL, '197.211.53.11', 'Fatoom24', '2023-12-02 23:07:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (441, 2, NULL, '197.210.77.99', 'Apple', '2023-12-03 11:07:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (442, 11, NULL, '129.56.24.247', 'esthermilo ', '2023-12-03 11:57:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (443, 18, NULL, '129.56.24.247', 'Maxybest ', '2023-12-03 12:06:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (444, 8, NULL, '129.56.24.247', 'Sheyin', '2023-12-03 12:20:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (445, 11, NULL, '129.56.24.247', 'esthermilo', '2023-12-03 15:53:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (446, 18, NULL, '129.56.24.247', 'Maxybest', '2023-12-03 18:12:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (447, 8, NULL, '129.56.24.247', 'Sheyin ', '2023-12-03 18:37:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (448, 8, NULL, '129.56.24.247', 'Sheyin', '2023-12-03 19:06:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (449, 18, NULL, '129.56.24.247', 'Maxybest', '2023-12-03 19:14:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (450, 8, NULL, '129.56.24.247', 'Sheyin', '2023-12-03 20:07:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (451, 18, NULL, '129.56.24.247', 'Maxybest', '2023-12-03 20:27:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (452, 2, NULL, '197.210.77.221', 'Apple', '2023-12-04 10:54:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (453, 9, NULL, '102.91.69.140', 'Bridget', '2023-12-04 11:40:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (454, 9, NULL, '129.56.24.176', 'Bridget', '2023-12-04 18:03:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (455, 10, NULL, '129.56.24.176', 'lydia', '2023-12-04 18:46:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (456, 9, NULL, '129.56.24.176', 'Bridget', '2023-12-04 19:15:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (457, 10, NULL, '129.56.24.176', 'Lydia ', '2023-12-04 19:49:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (458, 8, NULL, '197.210.54.101', 'Sheyin', '2023-12-05 12:00:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (459, 11, NULL, '197.210.227.115', 'esthermilo ', '2023-12-05 12:15:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (460, 2, NULL, '197.210.227.115', 'Apple', '2023-12-05 12:40:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (461, 11, NULL, '129.56.24.176', 'esthermilo ', '2023-12-05 17:28:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (462, 1, NULL, '160.152.69.19', 'owner', '2023-12-05 20:11:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (463, 8, NULL, '129.56.24.176', 'Sheyin', '2023-12-05 20:49:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (464, 9, NULL, '129.56.24.69', 'Bridget', '2023-12-06 12:40:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (465, 2, NULL, '197.210.53.66', 'Apple', '2023-12-06 13:23:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (466, 9, NULL, '129.56.24.69', 'Bridget', '2023-12-06 16:10:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (467, 2, NULL, '102.91.4.176', 'Apple', '2023-12-06 16:41:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (468, 17, NULL, '197.210.76.80', 'Sethsamson122000', '2023-12-06 18:19:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (469, 9, NULL, '129.56.24.69', 'Bridget', '2023-12-06 20:52:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (470, 1, NULL, '160.152.4.135', 'owner', '2023-12-06 21:05:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (471, 17, NULL, '197.210.53.66', 'Sethsamson122000', '2023-12-06 21:06:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (472, 10, NULL, '129.56.24.69', 'Lydia ', '2023-12-06 22:22:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (473, 3, NULL, '102.91.4.83', 'fatoom24', '2023-12-06 22:51:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (474, 9, NULL, '129.56.24.69', 'Bridget', '2023-12-06 22:53:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (475, 3, NULL, '197.210.70.14', 'fatoom24', '2023-12-06 22:54:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (476, 3, NULL, '197.210.52.177', 'fatoom24', '2023-12-07 11:45:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (477, 11, NULL, '197.210.70.31', 'esthermilo ', '2023-12-07 12:29:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (478, 18, NULL, '129.56.24.22', 'Maxybest', '2023-12-07 12:51:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (479, 18, NULL, '129.56.24.22', 'Maxybest', '2023-12-07 12:52:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (480, 3, NULL, '197.210.76.216', 'Fatoom24', '2023-12-07 15:08:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (481, 18, NULL, '129.56.25.105', 'Maxybest', '2023-12-07 16:40:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (482, 11, NULL, '129.56.25.105', 'esthermilo ', '2023-12-07 19:13:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (483, 1, NULL, '197.210.77.104', 'owner', '2023-12-07 20:04:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (484, 18, NULL, '129.56.25.105', 'Maxybest', '2023-12-07 20:49:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (485, 2, NULL, '197.210.76.96', 'Apple', '2023-12-07 22:17:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (486, 3, NULL, '197.210.76.96', 'fatoom24', '2023-12-07 22:19:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (487, 3, NULL, '197.210.52.169', 'fatoom24', '2023-12-07 23:01:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (488, 1, NULL, '169.159.121.44', 'owner', '2023-12-08 11:12:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (489, 31, NULL, '197.210.77.13', 'Mayreelishmum', '2023-12-08 11:16:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (490, 9, NULL, '197.210.52.169', 'Bridget', '2023-12-08 11:16:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (491, 10, NULL, '197.210.53.148', 'Lydia ', '2023-12-08 11:34:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (492, 10, NULL, '197.210.77.104', 'Lydia ', '2023-12-08 12:19:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (493, 10, NULL, '197.210.52.169', 'Lydia ', '2023-12-08 13:37:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (494, 10, NULL, '197.210.53.193', 'Lydia ', '2023-12-08 13:52:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (495, 9, NULL, '197.210.53.193', 'Bridget', '2023-12-08 14:00:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (496, 10, NULL, '197.210.52.169', 'Lydia ', '2023-12-08 14:02:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (497, 3, NULL, '197.210.52.169', 'Fatoom24', '2023-12-08 14:17:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (498, 1, NULL, '102.215.57.77', 'owner', '2023-12-08 17:46:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (499, 31, NULL, '197.210.77.104', 'Mayreelishmum', '2023-12-08 18:58:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (500, 9, NULL, '197.210.52.169', 'Bridget', '2023-12-08 19:11:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (501, 1, NULL, '169.159.125.183', 'owner', '2023-12-08 19:32:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (502, 9, NULL, '169.159.125.183', 'Bridget', '2023-12-08 19:44:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (503, 9, NULL, '197.210.53.196', 'Bridget', '2023-12-08 20:21:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (504, 10, NULL, '197.210.52.129', 'Lydia ', '2023-12-08 20:32:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (505, 31, NULL, '197.210.53.193', 'Mayreelishmum', '2023-12-08 20:35:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (506, 17, NULL, '169.159.125.183', 'Sethsamson122000', '2023-12-08 20:44:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (507, 31, NULL, '197.210.77.104', 'Mayreelishmum', '2023-12-08 21:04:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (508, 3, NULL, '197.210.53.193', 'Fatoom24', '2023-12-08 21:11:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (509, 9, NULL, '197.210.76.154', 'Bridget', '2023-12-08 21:33:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (510, 1, NULL, '129.56.24.93', 'owner', '2023-12-08 21:53:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (511, 17, NULL, '129.56.24.93', 'Sethsamson122000', '2023-12-08 22:14:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (512, 10, NULL, '197.210.77.194', 'Lydia ', '2023-12-08 22:33:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (513, 9, NULL, '197.210.53.196', 'Bridget', '2023-12-08 22:39:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (514, 31, NULL, '197.210.52.169', 'Mayreelishmum', '2023-12-08 22:41:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (515, 3, NULL, '197.210.53.193', 'Fatoom24', '2023-12-08 23:42:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (516, 31, NULL, '197.210.53.193', 'Mayreelishmum', '2023-12-09 11:32:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (517, 11, NULL, '197.210.53.193', 'esthermilo ', '2023-12-09 11:56:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (518, 31, NULL, '197.210.77.104', 'Mayreelishmum', '2023-12-09 12:16:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (519, 18, NULL, '197.210.52.169', 'Maxybest', '2023-12-09 13:38:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (520, 11, NULL, '197.210.77.13', 'esthermilo ', '2023-12-09 14:10:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (521, 31, NULL, '197.210.77.104', 'Mayreelishmum', '2023-12-09 16:25:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (522, 11, NULL, '197.210.77.13', 'esthermilo ', '2023-12-09 17:57:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (523, 31, NULL, '197.210.53.193', 'Mayreelishmum', '2023-12-09 18:00:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (524, 18, NULL, '129.56.24.219', 'Maxybest', '2023-12-09 18:36:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (525, 18, NULL, '129.56.24.219', 'Maxybest', '2023-12-09 18:36:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (526, 3, NULL, '197.210.53.148', 'Fatoom24', '2023-12-09 19:20:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (527, 31, NULL, '197.210.52.169', 'Mayreelishmum', '2023-12-09 20:12:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (528, 3, NULL, '197.210.77.106', 'Fatoom24', '2023-12-09 22:37:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (529, 3, NULL, '197.210.52.170', 'fatoom24', '2023-12-09 22:41:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (530, 31, NULL, '197.210.77.13', 'Mayreelishmum', '2023-12-09 22:48:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (531, 3, NULL, '197.210.53.193', 'fatoom24', '2023-12-09 23:03:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (532, 3, NULL, '197.210.77.106', 'fatoom24', '2023-12-10 11:34:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (533, 9, NULL, '129.56.24.219', 'Bridget', '2023-12-10 11:45:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (534, 9, NULL, '129.56.24.219', 'Bridget', '2023-12-10 12:32:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (535, 10, NULL, '129.56.24.219', 'lydia ', '2023-12-10 15:13:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (536, 17, NULL, '129.56.24.219', 'Sethsamson122000', '2023-12-10 16:45:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (537, 9, NULL, '129.56.24.219', 'Bridget', '2023-12-10 19:07:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (538, 10, NULL, '129.56.24.219', 'lydia', '2023-12-10 19:16:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (539, 3, NULL, '197.210.77.106', 'fatoom24', '2023-12-10 19:57:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (540, 10, NULL, '129.56.24.219', 'lydia', '2023-12-10 20:01:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (541, 17, NULL, '129.56.24.219', 'Sethsamson122000', '2023-12-10 20:36:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (542, 9, NULL, '129.56.24.219', 'Bridget ', '2023-12-10 21:02:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (543, 17, NULL, '129.56.24.219', 'Sethsamson122000', '2023-12-10 21:07:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (544, 31, NULL, '197.210.53.231', 'Mayreelishmum', '2023-12-11 11:11:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (545, 11, NULL, '197.210.77.13', 'esthermilo ', '2023-12-11 11:17:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (546, 18, NULL, '197.210.52.171', 'Maxybest', '2023-12-11 12:36:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (547, 3, NULL, '197.210.77.106', 'Fatoom24', '2023-12-11 13:15:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (548, 11, NULL, '197.210.52.171', 'esthermilo ', '2023-12-11 17:24:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (549, 31, NULL, '197.210.52.171', 'Mayreelishmum', '2023-12-11 17:41:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (550, 3, NULL, '197.210.53.231', 'Fatoom24', '2023-12-11 19:11:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (551, 18, NULL, '160.152.46.137', 'Maxybest', '2023-12-11 19:11:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (552, 3, NULL, '197.210.52.171', 'fatoom24', '2023-12-11 19:54:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (553, 31, NULL, '197.210.77.106', 'Mayreelishmum', '2023-12-11 20:03:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (554, 3, NULL, '197.210.77.106', 'fatoom24', '2023-12-11 21:48:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (555, 31, NULL, '197.210.77.106', 'Mayreelishmum', '2023-12-11 21:54:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (556, 18, NULL, '129.56.24.94', 'Maxybest', '2023-12-11 22:21:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (557, 9, NULL, '102.91.52.103', 'Bridget', '2023-12-12 12:14:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (558, 31, NULL, '102.91.55.66', 'Mayreelishmum', '2023-12-12 12:27:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (559, 10, NULL, '102.91.54.110', 'Lydia ', '2023-12-12 13:13:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (560, 10, NULL, '102.91.52.103', 'lydia', '2023-12-12 13:44:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (561, 17, NULL, '102.91.55.66', 'Sethsamson122000', '2023-12-12 16:14:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (562, 10, NULL, '102.91.55.66', 'Lydia ', '2023-12-12 17:01:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (563, 10, NULL, '102.91.52.147', 'Lydia ', '2023-12-12 17:10:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (564, 10, NULL, '102.91.52.103', 'lydia ', '2023-12-12 18:03:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (565, 3, NULL, '197.211.52.81', 'Fatoom24', '2023-12-12 18:03:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (566, 3, NULL, '102.91.52.103', 'Fatoom24', '2023-12-12 20:08:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (567, 10, NULL, '102.91.55.68', 'lydia ', '2023-12-12 21:08:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (568, 9, NULL, '102.91.52.120', 'Bridget', '2023-12-12 21:35:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (569, 3, NULL, '102.91.55.226', 'fatoom24', '2023-12-12 22:07:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (570, 31, NULL, '102.91.52.120', 'Mayreelishmum', '2023-12-12 22:58:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (571, 1, NULL, '160.152.176.9', 'owner', '2023-12-13 00:32:35');


#
# 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=33 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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 (1, '160.152.176.9', '\0\0', 'owner', '2c8ab736b2ccab4f50e72d5fd7d21020cbb77ae7', NULL, 'owner@tecdiary.com', NULL, NULL, NULL, NULL, 1351661704, 1702423955, 1, 'Owner', 'Owner', 'Stock Manager', '012345678', NULL, 'male', 1, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (3, '102.91.55.226', '160.152.98.245', 'fatoom24', 'c67fe4e0f1758ac08c96bc376a60359c8adca0d6', NULL, 'maxkyfatoom@gmail.com', NULL, '00abcdb6e82a130834624414fd6063026ebf3c3e', 1698583855, '2b3c41387c85a4049af96fd2216415f15490a1ca', 1697392172, 1702415248, 1, 'thitima', 'fon chizzy', 'kunakornthairestaurant', '09136541017', NULL, 'female', 1, NULL, NULL, NULL, 0, 0, 0, 1, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (9, '102.91.52.120', '129.56.24.101', 'bridget', '3d5b2dfc80772e0e78b4531612271517b9f502f2', NULL, 'bridgetmatthew97@gmail.com', NULL, NULL, NULL, NULL, 1698614699, 1702413344, 1, 'Bridget', 'Matthew', 'kunakorn thai restaurant', '07062901928', NULL, 'female', 5, 1, 3, NULL, NULL, 1, 0, 0, 1, 1);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (10, '102.91.55.68', '129.56.24.101', 'lydia', '232707e843b0f543a60f690b1d928292747dbd84', NULL, 'lydiaidagu@gmail.com', NULL, NULL, NULL, NULL, 1698615330, 1702411699, 1, 'LYDIA  ', 'IDAGU ', 'kunakorn thai restaurant', '07054614784', NULL, 'female', 5, 1, 3, NULL, NULL, 1, 0, 0, 1, 1);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (11, '197.210.52.171', '129.56.24.119', 'esthermilo', '43c8a93236f537ba5b1a786e65cfd039c65f9c0e', NULL, 'miloesther4@gmail.com', NULL, NULL, NULL, NULL, 1698861988, 1702311897, 1, 'Esther', 'Ukoyongho', 'kunakorn thai restaurant', '09018642992', NULL, 'female', 5, 1, 3, NULL, NULL, 1, 0, 0, 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 (12, '129.56.24.119', '129.56.24.119', 'johnogu', '29d1f68d353fee428f744a0600588f2b4c9c9ae9', NULL, 'johnogu10@yahoo.com', NULL, NULL, NULL, NULL, 1698868916, 1698869118, 1, 'Ogu', 'John', 'kunakorn thai restaurant', '08035973377', NULL, 'male', 6, 1, 3, NULL, 1, 1, 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, NULL, '45.61.184.168', 'dxvecpdwbdlcvo', 'ce3bbc129eb5bef5b96b0db925a8025287ea34db', NULL, 'scorpius77@verizon.net', '678c5ce912b8bb49368e5e25745e5bc4f4585a2e', NULL, NULL, NULL, 1699540037, 1699540037, 0, 'dXvECPDwBDlcVO', 'dXvECPDwBDlcVO', 'DFJmTLMXXaFdlBe', '612-976-76-11', NULL, 'male', 3, NULL, NULL, 40, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (14, NULL, '188.241.240.196', 'xtxdmjpskmlibd', '579531e5cc57e56edb9b031c9164438245cc219a', NULL, 'aurelie@draecollection.com', 'a7d46da680dd1ba45b68f37d9453e8699576e8ed', NULL, NULL, NULL, 1699673426, 1699673426, 0, 'xTxDmjPSkmLiBD', 'xTxDmjPSkmLiBD', 'WiWDcLQvNVrwzfoDB', '754-306-16-18', NULL, 'male', 3, NULL, NULL, 41, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (15, NULL, '176.105.255.64', 'adjccsshplwx', '840aa132e93f3dfda27cf3b405c00fa50e032f6c', NULL, 'anouk@draecollection.com', 'b4e19b6d06f092a153e7eeaa24e54ced36343ef5', NULL, NULL, NULL, 1699744685, 1699744685, 0, 'AdJcCsshpLWX', 'AdJcCsshpLWX', 'QWrHtVwefvhdrxkUnTseNBwRqoIR', '182-345-18-10', NULL, 'male', 3, NULL, NULL, 42, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (16, NULL, '188.241.240.196', 'oejxfmrcomnih', '880227a1992b8093bf6038468b3eff5ede3a3704', NULL, 'rosefunerals@outlook.com', '6d4df76f26da120fe94fee0690dc2e88ddc71ef7', NULL, NULL, NULL, 1699928449, 1699928449, 0, 'OEjxFMRcOMNiH', 'OEjxFMRcOMNiH', 'vWqHdJkLCbIpdDQczLCPomA', '734-003-96-66', NULL, 'male', 3, NULL, NULL, 43, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (17, '102.91.55.66', '160.152.44.1', 'sethsamson122000', 'd1fa07c52d2cdb6f66f63c8d90741e00eedcd516', NULL, 'samsonjr122000@gmail.com', NULL, NULL, NULL, NULL, 1700675153, 1702394051, 1, 'Seth', 'Samson', 'Kunakorn Thai restaurant ', '09117417299', NULL, 'male', 5, 1, 3, NULL, NULL, 1, 0, 0, 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 (18, '129.56.24.94', '160.152.85.79', 'maxybest', 'e5fb7f91bd6bcb58c9a65935f449809fb9c2da45', NULL, 'mercybestdickson@gmail.com', NULL, NULL, NULL, NULL, 1700762459, 1702329713, 1, 'Favour', 'Dickson', 'kunakornthairestaurant', '09018302090', NULL, 'female', 5, 1, 3, NULL, NULL, 1, 0, 0, 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 (19, NULL, '2.58.95.35', 'rcjfctfxubish', 'a2b8b73eabbc39dbf2703b778268a5a366547b0b', NULL, 'kumpdo.tbtdbqq@silesia.life', '024ffc378a54d3656ddbfe88808ffbfff4408e6b', NULL, NULL, NULL, 1701579029, 1701579029, 0, 'RCjfCtFxUBiSh', 'RCjfCtFxUBiSh', 'hdeBLJEDUjQpdNyEJPoeSkwoSF', '789-947-73-51', NULL, 'male', 3, NULL, NULL, 44, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (20, NULL, '2.58.95.35', 'daejosbssjcot', 'ff1cccc98e211d6b7de3fd8eb98b5839afb85c2f', NULL, 'elbradree@gmail.com', '77ad2e4ab983c400d89821899c7e94da7ad922a0', NULL, NULL, NULL, 1701642222, 1701642222, 0, 'dAeJoSBsSJcOT', 'dAeJoSBsSJcOT', 'PjcnejjdnjJKVJHuotMJU', '105-042-60-20', NULL, 'male', 3, NULL, NULL, 45, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (21, NULL, '2.58.95.35', 'wnabehirvkuf', '53eceebc29d5b6e3054fdd82b69a178847b93bf7', NULL, 'areal.joplin@gmail.com', 'aa21848665b26a6f9012b58c7ed18b2afcb9eedd', NULL, NULL, NULL, 1701724274, 1701724274, 0, 'WnabEHIRvkUF', 'WnabEHIRvkUF', 'oTBUuwucVbULSyxrCTMinTPkWxxhv', '245-339-89-56', NULL, 'male', 3, NULL, NULL, 46, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (22, NULL, '2.58.95.35', 'clbqwfcxdka', 'a656a17c56d650697e8c254c71c0291a5f5bada7', NULL, 'it@schiffs.com', 'e15b9c0feb8e9b20a8cfe62cef79803e143a3dae', NULL, NULL, NULL, 1701735999, 1701735999, 0, 'clBqwfcxdKa', 'clBqwfcxdKa', 'djsrwytyqRKxoPc', '425-812-54-99', NULL, 'male', 3, NULL, NULL, 47, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (23, NULL, '2.58.95.35', 'bjtjvwxsooexkxly', 'bdb9cb540f7cbd7dd49ae3e26e0c1c9e80dafdd1', NULL, 'spiausainc@gmail.com', 'c69166ad75ba9c6815d0f6eaea7c2b8b0ff630c7', NULL, NULL, NULL, 1701746057, 1701746057, 0, 'bjtJVwXsOoexkXLY', 'bjtJVwXsOoexkXLY', 'dHBuiRPdAjLncDT', '781-239-55-94', NULL, 'male', 3, NULL, NULL, 48, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (24, NULL, '2.58.95.35', 'wdkbiabtkpjr', 'a523d133969389ab62fd9df78f0f412b8ebfe28f', NULL, 'zach.fabry@bulkfluidsystems.com', '56c8b7b01cbb95acdea72e5ca1b6f4e23457e518', NULL, NULL, NULL, 1701758587, 1701758587, 0, 'WDKbiABtkpjr', 'WDKbiABtkpjr', 'vtvVWmbOTByKyrciiuSkn', '147-604-55-94', NULL, 'male', 3, NULL, NULL, 49, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (25, NULL, '2.58.95.35', 'xkqyxtpau', 'bfcba74f753f9668d0fa03a0981bf312927f5519', NULL, 'wilsons@nyptrust.com', '8dc7efba7eca41de186378f76df269e713769d5c', NULL, NULL, NULL, 1701799579, 1701799579, 0, 'XKqYXTpAU', 'XKqYXTpAU', 'fTdCcCAzNHckyoX', '245-162-05-81', NULL, 'male', 3, NULL, NULL, 50, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (26, NULL, '2.58.95.35', 'qlaptxbxpqj', '7eeca5bb0ef21627e92363022d7a64cbde2e684f', NULL, 'kfink@finklawfirm.com', 'cdcef50a066de3e6f89c0e47f47c2b7aad8a60de', NULL, NULL, NULL, 1701822278, 1701822278, 0, 'QLAPtxBxpqj', 'QLAPtxBxpqj', 'uarNSDdYBXNiQIk', '305-759-00-68', NULL, 'male', 3, NULL, NULL, 51, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (27, NULL, '2.58.95.35', 'dyfdjknjrj', '8b2ac2fc6f46c1ea23389452a39c7a173b3ae23a', NULL, 'smartins.blackstone@gmail.com', 'febb8af807e1ecfeacb24333bd5c3feef8d7321c', NULL, NULL, NULL, 1701926946, 1701926946, 0, 'DYFDjKnjrj', 'DYFDjKnjrj', 'MxDsIyDAVclXDSoedjqyq', '490-828-04-22', NULL, 'male', 3, NULL, NULL, 52, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (28, NULL, '2.58.95.35', 'vxfivcujrxkzn', '128028211c24300252c27c8aba427875219d4436', NULL, 'sylviasnyder01@gmail.com', '0570f253882ab2f4be241d3b88f7ed80a8fa15a4', NULL, NULL, NULL, 1701972443, 1701972443, 0, 'vxFIvCujrxKzN', 'vxFIvCujrxKzN', 'byxQXjsFoTCJbjEJAtHnwikHrXjk', '549-717-12-63', NULL, 'male', 3, NULL, NULL, 53, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (29, NULL, '2.58.95.35', 'chmyszswlhccdb', '0bfd55ce70237f06e309649c461087f098f3010e', NULL, 'chinedum@dixtrit.media', '7bede03e28d24285fad8e8dcfc12f93b20cefd5d', NULL, NULL, NULL, 1701983173, 1701983173, 0, 'chMYSzsWLHcCdb', 'chMYSzsWLHcCdb', 'baofWoJTNtMUHUhYT', '588-454-42-46', NULL, 'male', 3, NULL, NULL, 54, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (30, NULL, '2.58.95.35', 'rsjnxompemocd', 'd95a209a56c5fd7d6fb64a1d737295e9fea535c8', NULL, 'mmcculley@tapestry.com', NULL, NULL, NULL, NULL, 1701999449, 1701999449, 1, 'rsjNXOmpemOcd', 'rsjNXOmpemOcd', 'EOhWdpxBnfNIDrVQEzJNePmhR', '559-845-14-37', NULL, 'male', 3, NULL, NULL, 55, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (31, '102.91.52.120', '169.159.121.44', 'mayreelishmum', '0aee107a14f010c7792ffb0a292c73c6590380dc', NULL, 'awolopemayree@gmail.com', NULL, NULL, NULL, NULL, 1702030531, 1702418319, 1, 'awolope', 'mary', 'kunakorn thai restaurant', '08146428598', NULL, 'female', 6, 1, 3, NULL, 1, 1, 0, 1, 1, 1);
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 (32, NULL, '2.58.95.35', 'drphxlzjoqueo', '56b5ba6502fc249afbd9a19554248039f4662b4d', NULL, 'pdilley@stonestreetquarries.com', 'faf80d9c42b26cecb20abca6e03a3209f102599d', NULL, NULL, NULL, 1702040594, 1702040594, 0, 'DRphxLzJoQueO', 'DRphxLzJoQueO', 'PChbAUJIrpJrdqVrPH', '781-932-54-09', NULL, 'male', 3, NULL, NULL, 56, 0, 0, 0, 0, 0, 0);


#
# TABLE STRUCTURE FOR: sma_variants
#

DROP TABLE IF EXISTS `sma_variants`;

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

#
# 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=utf8mb3 COLLATE=utf8mb3_general_ci;

INSERT INTO `sma_warehouses` (`id`, `code`, `name`, `address`, `map`, `phone`, `email`, `price_group_id`) VALUES (1, 'WHI', 'Restaurant', '<p>City Park Wuse 2 Abuja</p>', NULL, '', 'Kunakornthairestaurant@Gmail.com', 1);


#
# TABLE STRUCTURE FOR: sma_warehouses_products
#

DROP TABLE IF EXISTS `sma_warehouses_products`;

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

INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (248, 3, 1, '-8.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (249, 56, 1, '-5.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (250, 24, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (251, 71, 1, '-41.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (252, 40, 1, '-10.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (272, 31, 1, '-1.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (273, 294, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (369, 1077, 1, '-4.0000', NULL, '5000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (370, 856, 1, '-63.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (371, 859, 1, '-57.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (372, 1109, 1, '0.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (373, 890, 1, '-22.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (374, 914, 1, '-13.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (375, 941, 1, '-27.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (376, 932, 1, '-29.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (377, 936, 1, '-32.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (378, 937, 1, '-17.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (379, 884, 1, '-24.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (380, 906, 1, '-5.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (381, 1076, 1, '-19.0000', NULL, '5000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (382, 1086, 1, '-83.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (383, 1059, 1, '-358.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (384, 1110, 1, '-2.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (385, 956, 1, '-39.0000', NULL, '15000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (386, 892, 1, '-27.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (387, 953, 1, '-40.0000', NULL, '13000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (388, 867, 1, '-43.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (389, 1081, 1, '-12.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (390, 1080, 1, '-31.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (391, 960, 1, '-31.0000', NULL, '4500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (392, 1087, 1, '-29.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (393, 860, 1, '-61.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (394, 1054, 1, '-24.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (395, 1057, 1, '-13.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (397, 1091, 1, '-12.0000', NULL, '2500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (398, 858, 1, '-44.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (399, 1092, 1, '-10.0000', NULL, '5000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (400, 1094, 1, '-26.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (401, 1064, 1, '-10.0000', NULL, '2500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (402, 945, 1, '-19.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (403, 866, 1, '-98.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (404, 863, 1, '-24.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (405, 940, 1, '-2.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (406, 865, 1, '-103.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (407, 911, 1, '-13.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (408, 1047, 1, '182.0000', NULL, '4744.2211');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (409, 1111, 1, '-365.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (410, 931, 1, '-13.0000', NULL, '10200.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (411, 1112, 1, '5.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (412, 949, 1, '-28.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (413, 935, 1, '-18.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (414, 1010, 1, '10.0000', NULL, '85000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (415, 1051, 1, '-37.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (416, 871, 1, '-2.0000', NULL, '10400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (417, 1038, 1, '-3.0000', NULL, '1550.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (418, 883, 1, '0.0000', NULL, '10400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (419, 976, 1, '-1.0000', NULL, '99000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (420, 864, 1, '-13.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (421, 917, 1, '-16.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (422, 1090, 1, '-30.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (423, 1049, 1, '149.0000', NULL, '4700.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (424, 868, 1, '-32.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (425, 915, 1, '-17.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (426, 928, 1, '0.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (427, 1052, 1, '-7.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (428, 1074, 1, '-41.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (429, 952, 1, '-5.0000', NULL, '13000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (430, 919, 1, '-12.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (431, 1039, 1, '24.0000', NULL, '2800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (432, 889, 1, '-6.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (433, 869, 1, '-7.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (434, 918, 1, '-44.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (435, 1035, 1, '2.0000', NULL, '2500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (436, 946, 1, '-28.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (437, 916, 1, '-3.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (438, 1037, 1, '-6.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (439, 898, 1, '-3.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (440, 1113, 1, '-1.0000', NULL, '10400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (441, 886, 1, '-2.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (442, 882, 1, '-12.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (443, 1088, 1, '-20.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (444, 1085, 1, '-16.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (445, 1083, 1, '-5.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (446, 1055, 1, '-12.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (447, 1114, 1, '-7.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (448, 876, 1, '-3.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (449, 957, 1, '-11.0000', NULL, '10000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (450, 942, 1, '-26.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (451, 955, 1, '-2.0000', NULL, '10900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (452, 877, 1, '-5.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (453, 951, 1, '-3.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (454, 1084, 1, '0.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (455, 905, 1, '-3.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (456, 1072, 1, '-25.0000', NULL, '4000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (457, 910, 1, '-4.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (458, 964, 1, '-2.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (459, 895, 1, '-1.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (460, 996, 1, '-4.0000', NULL, '7000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (461, 1008, 1, '-1.0000', NULL, '50000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (462, 887, 1, '-8.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (463, 1036, 1, '-8.0000', NULL, '2700.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (464, 1061, 1, '-14.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (465, 1016, 1, '-5.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (466, 861, 1, '-25.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (467, 933, 1, '-30.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (468, 963, 1, '0.0000', NULL, '12600.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (469, 926, 1, '-25.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (470, 912, 1, '-18.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (471, 1002, 1, '-4.0000', NULL, '9000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (472, 950, 1, '-22.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (473, 1115, 1, '122.0000', NULL, '5575.8621');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (474, 1116, 1, '21.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (475, 885, 1, '-19.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (476, 1042, 1, '-15.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (477, 901, 1, '-8.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (478, 1014, 1, '-1.0000', NULL, '4500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (479, 925, 1, '-3.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (480, 929, 1, '-3.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (481, 872, 1, '-15.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (482, 1056, 1, '0.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (483, 958, 1, '-5.0000', NULL, '5500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (484, 894, 1, '-3.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (485, 1097, 1, '-35.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (486, 959, 1, '-21.0000', NULL, '4500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (487, 893, 1, '-15.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (488, 1117, 1, '-3.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (489, 1073, 1, '-1.0000', NULL, '5000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (490, 948, 1, '-50.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (491, 1118, 1, '-1.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (492, 1119, 1, '-1.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (493, 1120, 1, '-1.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (494, 1048, 1, '20.0000', NULL, '3381.8182');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (495, 938, 1, '-6.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (496, 930, 1, '-2.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (497, 943, 1, '-12.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (498, 934, 1, '-4.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (499, 1121, 1, '-2.0000', NULL, '12000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (500, 1018, 1, '0.0000', NULL, '15500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (501, 880, 1, '-8.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (502, 1095, 1, '-1.0000', NULL, '2500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (503, 1122, 1, '-1.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (504, 913, 1, '-9.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (505, 1082, 1, '-10.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (506, 954, 1, '-6.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (507, 1006, 1, '-3.0000', NULL, '6300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (508, 1029, 1, '-44.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (509, 974, 1, '0.0000', NULL, '6500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (510, 857, 1, '-11.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (511, 907, 1, '-3.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (512, 1123, 1, '-2.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (513, 897, 1, '-5.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (514, 1075, 1, '-13.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (515, 1124, 1, '-4.0000', NULL, '4500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (516, 1125, 1, '-2.0000', NULL, '10500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (517, 994, 1, '-2.0000', NULL, '16200.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (518, 986, 1, '-2.0000', NULL, '8000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (519, 1126, 1, '-19.0000', NULL, '4500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (520, 1031, 1, '-4.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (521, 990, 1, '-8.0000', NULL, '6300.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (522, 1022, 1, '0.0000', NULL, '20000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (523, 1127, 1, '-2.0000', NULL, '13000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (524, 1128, 1, '0.0000', NULL, '15000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (525, 1129, 1, '0.0000', NULL, '10900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (526, 1130, 1, '-2.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (527, 909, 1, '-3.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (528, 987, 1, '-4.0000', NULL, '10000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (529, 1062, 1, '-2.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (530, 1089, 1, '-44.0000', NULL, '2500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (531, 1071, 1, '-4.0000', NULL, '4000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (532, 1067, 1, '-6.0000', NULL, '4000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (533, 1093, 1, '-7.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (534, 1028, 1, '0.0000', NULL, '25000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (535, 1096, 1, '-9.0000', NULL, '2500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (536, 1060, 1, '-8.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (537, 903, 1, '0.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (538, 970, 1, '-2.0000', NULL, '10000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (539, 979, 1, '-1.0000', NULL, '25500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (540, 1131, 1, '0.0000', NULL, '15000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (541, 1106, 1, '0.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (542, 908, 1, '-8.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (543, 902, 1, '-4.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (544, 939, 1, '-4.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (545, 961, 1, '-2.0000', NULL, '4500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (546, 977, 1, '-1.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (547, 1079, 1, '-6.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (548, 1034, 1, '20.0000', NULL, '1900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (549, 923, 1, '0.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (550, 944, 1, '0.0000', NULL, '7900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (551, 1023, 1, '-3.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (552, 1024, 1, '0.0000', NULL, '25000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (553, 1025, 1, '0.0000', NULL, '4000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (554, 1026, 1, '0.0000', NULL, '25000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (555, 1027, 1, '0.0000', NULL, '1400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (556, 921, 1, '-1.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (557, 1030, 1, '0.0000', NULL, '30000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (558, 1032, 1, '0.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (559, 1033, 1, '0.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (560, 1040, 1, '-9.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (561, 1041, 1, '-4.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (562, 1043, 1, '11.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (563, 1044, 1, '0.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (564, 1045, 1, '0.0000', NULL, '5000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (565, 1046, 1, '-9.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (566, 1078, 1, '-6.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (567, 1053, 1, '-9.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (568, 1058, 1, '-19.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (569, 1132, 1, '-9.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (570, 965, 1, '0.0000', NULL, '15000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (571, 966, 1, '0.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (572, 967, 1, '0.0000', NULL, '15200.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (573, 968, 1, '0.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (574, 969, 1, '0.0000', NULL, '10000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (575, 1066, 1, '-5.0000', NULL, '4000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (576, 972, 1, '0.0000', NULL, '6500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (577, 973, 1, '0.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (578, 975, 1, '-1.0000', NULL, '32500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (579, 1003, 1, '-5.0000', NULL, '8000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (580, 980, 1, '-1.0000', NULL, '27000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (581, 981, 1, '0.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (582, 1133, 1, '-2.0000', NULL, '2500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (583, 982, 1, '-2.0000', NULL, '12000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (584, 983, 1, '0.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (585, 984, 1, '0.0000', NULL, '20000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (586, 985, 1, '0.0000', NULL, '1800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (587, 988, 1, '0.0000', NULL, '7000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (588, 989, 1, '-1.0000', NULL, '2500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (589, 991, 1, '0.0000', NULL, '2500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (590, 995, 1, '0.0000', NULL, '7000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (591, 997, 1, '0.0000', NULL, '7000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (592, 998, 1, '0.0000', NULL, '6000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (593, 999, 1, '0.0000', NULL, '6000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (594, 1000, 1, '-1.0000', NULL, '4500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (595, 1001, 1, '0.0000', NULL, '6500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (596, 1004, 1, '0.0000', NULL, '7000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (597, 1005, 1, '0.0000', NULL, '10000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (598, 1007, 1, '0.0000', NULL, '7000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (599, 1009, 1, '0.0000', NULL, '80000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (600, 1011, 1, '0.0000', NULL, '6000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (601, 1012, 1, '0.0000', NULL, '65000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (602, 1013, 1, '-1.0000', NULL, '72000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (603, 1015, 1, '-4.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (604, 1019, 1, '0.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (605, 1020, 1, '0.0000', NULL, '11800.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (606, 1021, 1, '0.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (607, 962, 1, '-7.0000', NULL, '4500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (608, 1134, 1, '19.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (609, 1135, 1, '0.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (610, 891, 1, '-3.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (611, 920, 1, '-3.0000', NULL, '10400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (612, 1065, 1, '-4.0000', NULL, '4000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (613, 862, 1, '-2.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (614, 1063, 1, '0.0000', NULL, '3500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (615, 1136, 1, '-1.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (616, 1070, 1, '-1.0000', NULL, '4000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (617, 947, 1, '-6.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (618, 870, 1, '-2.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (619, 1137, 1, '0.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (620, 922, 1, '-1.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (621, 1138, 1, '-1.0000', NULL, '2500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (622, 1139, 1, '-1.0000', NULL, '1500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (623, 888, 1, '-2.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (624, 873, 1, '-2.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (625, 900, 1, '0.0000', NULL, '10400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (626, 1140, 1, '-1.0000', NULL, '4000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (627, 1141, 1, '0.0000', NULL, '5000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (628, 1142, 1, '20.0000', NULL, '900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (629, 1143, 1, '-1.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (630, 874, 1, '-1.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (631, 1144, 1, '-2.0000', NULL, '2500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (632, 1145, 1, '-4.0000', NULL, '5000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (633, 1146, 1, '0.0000', NULL, '1000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (634, 1147, 1, '-1.0000', NULL, '2000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (635, 875, 1, '0.0000', NULL, '10400.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (636, 1148, 1, '-2.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (637, 1149, 1, '-1.0000', NULL, '3000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (638, 1150, 1, '-1.0000', NULL, '500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (639, 1151, 1, '-1.0000', NULL, '13000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (640, 1152, 1, '0.0000', NULL, '15000.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (641, 881, 1, '-1.0000', NULL, '9900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (642, 927, 1, '0.0000', NULL, '8900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (643, 1153, 1, '-1.0000', NULL, '7500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (644, 1154, 1, '0.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (645, 1155, 1, '-1.0000', NULL, '5900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (646, 1156, 1, '-1.0000', NULL, '5900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (647, 1157, 1, '-1.0000', NULL, '6500.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (648, 1158, 1, '0.0000', NULL, '6900.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (649, 1159, 1, '-1.0000', NULL, '500.0000');


#
# TABLE STRUCTURE FOR: sma_warehouses_products_variants
#

DROP TABLE IF EXISTS `sma_warehouses_products_variants`;

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

#
# 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=utf8mb3 COLLATE=utf8mb3_general_ci;